computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
577 B
26 lines
577 B
1 year ago
|
type CheckIconProps = {
|
||
|
additionalClasses?: string;
|
||
|
};
|
||
|
|
||
|
export function StopIcon(props: CheckIconProps) {
|
||
|
const { additionalClasses = 'mr-2 w-[20px] h-[20px]' } = props;
|
||
|
|
||
|
return (
|
||
|
<svg
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
width="24"
|
||
|
height="24"
|
||
|
viewBox="0 0 24 24"
|
||
|
fill="none"
|
||
|
stroke="currentColor"
|
||
|
stroke-width="2"
|
||
|
stroke-linecap="round"
|
||
|
stroke-linejoin="round"
|
||
|
className={`relative ${additionalClasses}`}
|
||
|
>
|
||
|
<circle cx="12" cy="12" r="10" />
|
||
|
<path d="m4.9 4.9 14.2 14.2" />
|
||
|
</svg>
|
||
|
);
|
||
|
}
|