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

feat:🎸 update icons from figma #11

Merged
merged 1 commit into from
Oct 11, 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
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';