parent
a30cb170d6
commit
c3b34cde3f
2 changed files with 38 additions and 5 deletions
@ -0,0 +1,25 @@ |
||||
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> |
||||
); |
||||
} |
Loading…
Reference in new issue