Skip to content

Commit

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

export const ErrorIcon = ({ 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="M13 13h-2V7h2m0 10h-2v-2h2M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10a10 10 0 0 0 10-10A10 10 0 0 0 12 2"
/>
</svg>
);
};

0 comments on commit ef49263

Please sign in to comment.