base done
This commit is contained in:
25
src/components/icons/Check.tsx
Normal file
25
src/components/icons/Check.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
export default function Check(props: {
|
||||
strokeWidth: number;
|
||||
height: number;
|
||||
width: number;
|
||||
class?: string;
|
||||
}) {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
strokeWidth={props.strokeWidth}
|
||||
stroke="currentColor"
|
||||
height={props.height}
|
||||
width={props.width}
|
||||
class={props.class}
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
d="M4.5 12.75l6 6 9-13.5"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user