-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1560 Adds new Heroicons with arrows for the sorting.
- Loading branch information
1 parent
7c591c4
commit 3001b63
Showing
10 changed files
with
95 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
packages/orchestrator-ui-components/src/icons/heroicons/WfoArrowLongDown.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React, { FC } from 'react'; | ||
|
||
import { WfoIconProps } from '@/icons/WfoIconProps'; | ||
|
||
import { withWfoHeroIconsWrapper } from './WfoHeroIconsWrapper'; | ||
|
||
export const WfoArrowLongDownSvg: FC<WfoIconProps> = ({ | ||
width = 8, | ||
height = 16, | ||
color = 'currentColor', | ||
}) => ( | ||
<svg | ||
width={width} | ||
height={height} | ||
viewBox="6 2 8 16" | ||
fill={color} | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
fillRule="evenodd" | ||
d="M10 2a.75.75 0 0 1 .75.75v12.59l1.95-2.1a.75.75 0 1 1 1.1 1.02l-3.25 3.5a.75.75 0 0 1-1.1 0l-3.25-3.5a.75.75 0 1 1 1.1-1.02l1.95 2.1V2.75A.75.75 0 0 1 10 2Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
|
||
export const WfoArrowLongDown = withWfoHeroIconsWrapper(WfoArrowLongDownSvg); |
27 changes: 27 additions & 0 deletions
27
packages/orchestrator-ui-components/src/icons/heroicons/WfoArrowLongUp.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React, { FC } from 'react'; | ||
|
||
import { WfoIconProps } from '@/icons/WfoIconProps'; | ||
|
||
import { withWfoHeroIconsWrapper } from './WfoHeroIconsWrapper'; | ||
|
||
export const WfoArrowLongUpSvg: FC<WfoIconProps> = ({ | ||
width = 8, | ||
height = 16, | ||
color = 'currentColor', | ||
}) => ( | ||
<svg | ||
width={width} | ||
height={height} | ||
viewBox="6 2 8 16" | ||
fill={color} | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
fillRule="evenodd" | ||
d="M10 18a.75.75 0 0 1-.75-.75V4.66L7.3 6.76a.75.75 0 0 1-1.1-1.02l3.25-3.5a.75.75 0 0 1 1.1 0l3.25 3.5a.75.75 0 1 1-1.1 1.02l-1.95-2.1v12.59A.75.75 0 0 1 10 18Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
|
||
export const WfoArrowLongUp = withWfoHeroIconsWrapper(WfoArrowLongUpSvg); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters