18 lines
1.1 KiB
TypeScript
18 lines
1.1 KiB
TypeScript
import {SVGProps} from "react"
|
|
import {cx} from "@emotion/css";
|
|
|
|
|
|
const IconCancelFill = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => (
|
|
<svg
|
|
{...props}
|
|
className={cx('svg-icon icon-cancel-fill', props.className)}
|
|
viewBox="0 0 1024 1024" version="1.1"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="currentColor"
|
|
>
|
|
<path
|
|
d="M512 64C264.992 64 64 264.96 64 512s200.96 448 448 448c247.008 0 448-200.96 448-448S759.04 64 512 64zM694.752 649.984c12.48 12.544 12.448 32.768-0.064 45.248-6.24 6.208-14.4 9.344-22.592 9.344-8.224 0-16.416-3.136-22.656-9.408l-137.6-138.016-138.048 136.576c-6.24 6.144-14.368 9.248-22.496 9.248-8.256 0-16.48-3.168-22.752-9.504-12.416-12.576-12.32-32.8 0.256-45.248l137.888-136.384-137.376-137.824c-12.48-12.512-12.448-32.768 0.064-45.248 12.512-12.512 32.736-12.448 45.248 0.064l137.568 137.984 138.048-136.576c12.544-12.448 32.832-12.32 45.248 0.256 12.448 12.576 12.32 32.832-0.256 45.248l-137.888 136.384L694.752 649.984z"
|
|
></path>
|
|
</svg>)
|
|
export default IconCancelFill;
|