Skip to content

Commit

Permalink
create :: notification icon
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Aug 6, 2024
1 parent d54450b commit 6d53215
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/assets/NotificationIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { IconPropsType } from './IconType';

export const NotificationIcon = ({ size = 24, color = 'currentColor' }: IconPropsType) => {
return (
<svg xmlns="http://www.w3.org/2000/svg" width={size} height={size} viewBox="0 0 24 24">
<path
fill={color}
d="M5 18h14v-6.969C19 7.148 15.866 4 12 4s-7 3.148-7 7.031zm7-16c4.97 0 9 4.043 9 9.031V20H3v-8.969C3 6.043 7.03 2 12 2M9.5 21h5a2.5 2.5 0 0 1-5 0"
/>
</svg>
);
};

0 comments on commit 6d53215

Please sign in to comment.