Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Icon] Adds re-order icon #207

Merged
merged 3 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "Adds re-order icon",
"packageName": "@microsoft/arbutus.icon",
"email": "[email protected]",
"dependentChangeType": "patch"
}
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 @@ -11,6 +11,7 @@ import { Moon } from './moon';
import { MoreHorizontal } from './more-horizontal';
import { MoreVertical } from './more-vertical';
import { Open } from './open';
import { ReOrder } from './re-order';
import { SlideIn } from './slide-in';
import { SlideOut } from './slide-out';
import { Sun } from './sun';
Expand All @@ -22,6 +23,7 @@ export const paths = {
['full-screen']: FullScreen,
['more-horizontal']: MoreHorizontal,
['more-vertical']: MoreVertical,
['re-reorder']: ReOrder,
['slide-in']: SlideIn,
['slide-out']: SlideOut,
check: Check,
Expand Down
8 changes: 8 additions & 0 deletions components/icon/src/icon/icons/re-order.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import * as React from 'react';

export const ReOrder = () => (
<path
d="M1.99998 8.66667H14C14.3682 8.66667 14.6666 8.96513 14.6666 9.33333C14.6666 9.6752 14.4093 9.957 14.0777 9.99553L14 10H1.99998C1.63179 10 1.33331 9.70153 1.33331 9.33333C1.33331 8.99147 1.59067 8.70967 1.92223 8.67113L1.99998 8.66667ZM1.99998 6H14C14.3682 6 14.6666 6.29848 14.6666 6.66667C14.6666 7.00853 14.4093 7.29033 14.0777 7.32887L14 7.33333H1.99998C1.63179 7.33333 1.33331 7.03487 1.33331 6.66667C1.33331 6.32477 1.59067 6.04299 1.92223 6.00449L1.99998 6Z"
fill="currentColor"
/>
);
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,20 @@
"@babel/preset-typescript": "^7.23.2",
"@griffel/react": "^1.5.18",
"@microsoft/arbutus.aside-navigation": "1.0.7",
"@microsoft/arbutus.bookmark-tile": "1.0.9",
"@microsoft/arbutus.bookmark-tile": "1.0.10",
"@microsoft/arbutus.code-snippet": "1.0.6",
"@microsoft/arbutus.command": "1.0.6",
"@microsoft/arbutus.command": "1.0.7",
"@microsoft/arbutus.divider": "1.0.4",
"@microsoft/arbutus.file-to-string": "1.0.4",
"@microsoft/arbutus.icon": "1.0.6",
"@microsoft/arbutus.icon-button": "1.0.8",
"@microsoft/arbutus.link": "1.1.7",
"@microsoft/arbutus.main-navigation": "1.0.7",
"@microsoft/arbutus.mark-list": "1.0.8",
"@microsoft/arbutus.recommendation-tile": "1.0.9",
"@microsoft/arbutus.icon": "1.1.0",
"@microsoft/arbutus.icon-button": "1.1.0",
"@microsoft/arbutus.link": "1.1.8",
"@microsoft/arbutus.main-navigation": "1.0.8",
"@microsoft/arbutus.mark-list": "1.0.9",
"@microsoft/arbutus.recommendation-tile": "1.0.10",
"@microsoft/arbutus.tabs": "1.0.7",
"@microsoft/arbutus.text": "1.0.6",
"@microsoft/arbutus.theme-switch": "1.0.6",
"@microsoft/arbutus.theme-switch": "1.0.7",
"@microsoft/arbutus.theming": "1.1.2",
"@microsoft/arbutus.tile": "1.0.6",
"@microsoft/arbutus.ts": "0.0.2",
Expand Down
Loading