-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathicon-check-square.tsx
More file actions
26 lines (23 loc) · 846 Bytes
/
Copy pathicon-check-square.tsx
File metadata and controls
26 lines (23 loc) · 846 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 IconCheckSquare = 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="M128 768v-768h768V506.016l-64-64V64H192V704h634.016l64 64H128z m744.992-104.992L512 301.98400000000004l-136.992 137.024-46.016-46.016 160-160 23.008-21.984 23.008 21.984 384 384L872.96 663.04z" />
</g>
</svg>
);
});
IconCheckSquare.displayName = 'IconCheckSquare';
export { IconCheckSquare };