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
chihokotaro authored Dec 13, 2024
1 parent 20c1619 commit 24c0a3c
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 0 deletions.
3 changes: 3 additions & 0 deletions assets/medicine-suppository-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/medicine-syrup-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/MedicineSuppositoryIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import type { SVGProps } from 'react';
const SvgMedicineSuppositoryIcon = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="none" viewBox="0 0 24 24" {...props}>
<path
fill="currentColor"
fillRule="evenodd"
d="M15.555 20.256A2 2 0 0 1 13.572 22h-3.143a2 2 0 0 1-1.984-1.744l-1.249-9.684a6 6 0 0 1 .827-3.89L9.865 3.66c.974-1.599 3.296-1.599 4.27 0l1.842 3.023a6 6 0 0 1 .827 3.89zM10.43 20l-1.25-9.684a4 4 0 0 1 .552-2.593l1.842-3.022a.5.5 0 0 1 .854 0l1.842 3.022a4 4 0 0 1 .551 2.593L13.572 20z"
clipRule="evenodd"
/>
</svg>
);
export default SvgMedicineSuppositoryIcon;
12 changes: 12 additions & 0 deletions src/MedicineSyrupIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import type { SVGProps } from 'react';
const SvgMedicineSyrupIcon = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="none" viewBox="0 0 24 24" {...props}>
<path
fill="currentColor"
fillRule="evenodd"
d="M5 4a2 2 0 0 1 2-2h5a2 2 0 0 1 2 2v3a3 3 0 0 1 3 3v3h3.5a2 2 0 0 1 1.993 2.166l-.5 6A2 2 0 0 1 20 23h-6a2 2 0 0 1-1.732-1H4a2 2 0 0 1-2-2V10a3 3 0 0 1 3-3zm7 0v3H7V4zM5 9h9a1 1 0 0 1 1 1v1H4v-1a1 1 0 0 1 1-1m-1 4v1.5h5.25a.75.75 0 0 0 0-1.5zm0 3.5V18h5.25a.75.75 0 0 0 0-1.5zM20 21l.5-6h-7l.5 6z"
clipRule="evenodd"
/>
</svg>
);
export default SvgMedicineSyrupIcon;
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ export { default as MedicalFormIcon } from './MedicalFormIcon';
export { default as MedicalHeartIcon } from './MedicalHeartIcon';
export { default as MedicalSymbolFillIcon } from './MedicalSymbolFillIcon';
export { default as MedicalSymbolOutlineIcon } from './MedicalSymbolOutlineIcon';
export { default as MedicineSuppositoryIcon } from './MedicineSuppositoryIcon';
export { default as MedicineSyrupIcon } from './MedicineSyrupIcon';
export { default as MemoIcon } from './MemoIcon';
export { default as MenuIcon } from './MenuIcon';
export { default as MicIcon } from './MicIcon';
Expand Down

0 comments on commit 24c0a3c

Please sign in to comment.