Skip to content

Commit

Permalink
feat:🎸 update icons from figma
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <[email protected]>
  • Loading branch information
hirotaka-yoshii authored Oct 11, 2024
1 parent c182cec commit 3312c1f
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions assets/workflow-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions src/WorkflowIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import Svg, { Path } from 'react-native-svg';
import type { SvgProps } from 'react-native-svg';
interface ISvgProps extends SvgProps {
xmlns?: string;
xmlnsXlink?: string;
xmlSpace?: string;
}
const SvgWorkflowIcon = (props: ISvgProps) => (
<Svg xmlns="http://www.w3.org/2000/svg" width={24} height={24} fill="none" viewBox="0 0 24 24" {...props}>
<Path
fill="currentColor"
fillRule="evenodd"
d="M18 4a2 2 0 0 0-2 1.997v.006A2 2 0 1 0 18 4m-3.874 3c.216.838.697 1.57 1.348 2.101l-2.954 7.275a1 1 0 0 1-.927.624H9.874A4.002 4.002 0 0 0 2 18a4 4 0 0 0 7.874 1h1.72a3 3 0 0 0 2.779-1.872l2.92-7.19q.345.061.707.062a4 4 0 1 0-3.874-5H9.874A4.002 4.002 0 0 0 2 6a4 4 0 0 0 7.874 1zM8 6.001A2 2 0 1 1 8 6V6M6 16a2 2 0 0 1 2 1.99v.02A2 2 0 1 1 6 16"
clipRule="evenodd"
/>
</Svg>
);
export default SvgWorkflowIcon;
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,3 +194,4 @@ export { default as WalkIcon } from './WalkIcon';
export { default as WeightScaleIcon } from './WeightScaleIcon';
export { default as WheelchairIcon } from './WheelchairIcon';
export { default as WomanIcon } from './WomanIcon';
export { default as WorkflowIcon } from './WorkflowIcon';

0 comments on commit 3312c1f

Please sign in to comment.