* fix(ui): split icons from SVG.tsx components * fix(ui): split icons from SVG.tsx components * fix(ui): split icons from SVG.tsx components
19 lines
1.1 KiB
TypeScript
19 lines
1.1 KiB
TypeScript
|
|
/* Auto-generated, do not edit */
|
|
import React from 'react';
|
|
|
|
interface Props {
|
|
size?: number | string;
|
|
width?: number | string;
|
|
height?: number | string;
|
|
fill?: string;
|
|
}
|
|
|
|
function Doublecheck(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 1000 1000" width={ `${ width }px` } height={ `${ height }px` } ><path d="M671.31 244.15c-3.06 1.53-104.71 101.08-225.5 221.1-120.8 120.22-220.34 218.42-221.3 218.42-.77 0-38.67-36.56-84.23-81.17-60.68-59.53-84.61-81.93-89.59-83.65-25.08-8.23-49 17.8-37.9 41.16 3.25 6.89 187.22 188.75 196.79 194.68 7.66 4.59 21.44 4.79 29.48.19 7.66-4.21 469-462.68 472.64-469.57 6.32-12.63 1.72-29.29-11.1-38.67-6.51-4.78-21.64-6.12-29.29-2.49zM946.77 244.15c-3.07 1.34-104.71 100.88-225.69 221.1C599.9 585.28 500.17 683.67 499.4 683.67c-.96 0-10.72-8.42-21.63-18.76-24.69-22.97-29.48-25.84-41.54-24.7-21.25 1.91-34.84 25.08-25.27 43.26 3.64 7.28 70.06 70.45 76.57 72.94 8.04 3.06 20.48 2.3 27.18-1.72 9.95-6.13 469.19-463.45 472.64-470.72 11.3-23.93-15.69-50.54-40.58-39.82z"/></svg>
|
|
);
|
|
}
|
|
|
|
export default Doublecheck;
|