21 lines
651 B
TypeScript
21 lines
651 B
TypeScript
import type { SVGProps } from 'react';
|
|
|
|
export function StopIcon(props: SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="1em"
|
|
height="1em"
|
|
fill="currentColor"
|
|
viewBox="0 0 256 256"
|
|
{...props}
|
|
>
|
|
<path
|
|
d="M208,56V200a8,8,0,0,1-8,8H56a8,8,0,0,1-8-8V56a8,8,0,0,1,8-8H200A8,8,0,0,1,208,56Z"
|
|
opacity="0.2"
|
|
/>
|
|
<path d="M200,40H56A16,16,0,0,0,40,56V200a16,16,0,0,0,16,16H200a16,16,0,0,0,16-16V56A16,16,0,0,0,200,40Zm0,160H56V56H200V200Z" />
|
|
</svg>
|
|
);
|
|
}
|