-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathicon-close.tsx
More file actions
26 lines (23 loc) · 894 Bytes
/
Copy pathicon-close.tsx
File metadata and controls
26 lines (23 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { forwardRef } from 'react';
import type { IconProps } from './types';
const IconClose = forwardRef<SVGSVGElement, IconProps>((props, ref) => {
const { size = '1em', color = 'currentColor', className, style, ...rest } = props;
return (
<svg
ref={ref}
viewBox="0 0 1024 1024"
width={size}
height={size}
fill={color}
className={className}
style={{ verticalAlign: "middle", ...style }}
{...rest}
>
<g transform="translate(0, 896) scale(1, -1)">
<path d="M809.984 621.9946669999999l-237.994667-237.994667 237.994667-237.994667-59.989333-59.989333-237.994667 237.994667-237.994667-237.994667-59.989333 59.989333 237.994667 237.994667-237.994667 237.994667 59.989333 59.989333 237.994667-237.994667 237.994667 237.994667z" />
</g>
</svg>
);
});
IconClose.displayName = 'IconClose';
export { IconClose };