13 lines
473 B
TypeScript
13 lines
473 B
TypeScript
function XMarkFilledIcon() {
|
|
return (
|
|
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M10 3a7 7 0 1 1 0 14 7 7 0 0 1 0-14m2.424 4.576a.6.6 0 0 0-.848 0L10 9.152 8.424 7.576a.599.599 0 1 0-.848.848L9.152 10l-1.576 1.576a.599.599 0 1 0 .848.848L10 10.848l1.576 1.576a.599.599 0 1 0 .848-.848L10.848 10l1.576-1.576a.6.6 0 0 0 0-.848"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default XMarkFilledIcon;
|