Skip to content

Commit

Permalink
Adds horizontal-more
Browse files Browse the repository at this point in the history
  • Loading branch information
AkimaLunar committed Oct 21, 2024
1 parent c1eb441 commit 039a797
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "minor",
"comment": "Adds new icon",
"comment": "Adds new icons: vertical-more, horizontal-more.",
"packageName": "@microsoft/arbutus.icon-button",
"email": "[email protected]",
"dependentChangeType": "patch"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "minor",
"comment": "Adds size, button attributes, and ref to IconButton props",
"comment": "Adds size, button attributes, and ref to IconButton props.",
"packageName": "@microsoft/arbutus.icon",
"email": "[email protected]",
"dependentChangeType": "patch"
Expand Down
2 changes: 2 additions & 0 deletions components/icon/src/icon/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { Exclamation } from './exclamation';
import { FullScreen } from './full-screen';
import { Link } from './link';
import { Moon } from './moon';
import { MoreHorizontal } from './more-horizontal';
import { MoreVertical } from './more-vertical';
import { Open } from './open';
import { SlideIn } from './slide-in';
Expand All @@ -19,6 +20,7 @@ export const paths = {
['arrow-right']: ArrowRight,
['chevron-right']: ChevronRight,
['full-screen']: FullScreen,
['more-horizontal']: MoreHorizontal,
['more-vertical']: MoreVertical,
['slide-in']: SlideIn,
['slide-out']: SlideOut,
Expand Down
8 changes: 8 additions & 0 deletions components/icon/src/icon/icons/more-horizontal.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import * as React from 'react';

export const MoreHorizontal = () => (
<path
d="M5.16665 7.99999C5.16665 8.64433 4.64431 9.16666 3.99998 9.16666C3.35565 9.16666 2.83331 8.64433 2.83331 7.99999C2.83331 7.35566 3.35565 6.83333 3.99998 6.83333C4.64431 6.83333 5.16665 7.35566 5.16665 7.99999ZM9.16665 7.99999C9.16665 8.64433 8.64431 9.16666 7.99998 9.16666C7.35565 9.16666 6.83331 8.64433 6.83331 7.99999C6.83331 7.35566 7.35565 6.83333 7.99998 6.83333C8.64431 6.83333 9.16665 7.35566 9.16665 7.99999ZM12 9.16666C12.6443 9.16666 13.1666 8.64433 13.1666 7.99999C13.1666 7.35566 12.6443 6.83333 12 6.83333C11.3556 6.83333 10.8333 7.35566 10.8333 7.99999C10.8333 8.64433 11.3556 9.16666 12 9.16666Z"
fill="currentColor"
/>
);

0 comments on commit 039a797

Please sign in to comment.