26 lines
669 B
TypeScript
26 lines
669 B
TypeScript
|
import { createIcon } from '../lib/create-icon'
|
||
|
|
||
|
const SvgDoneIcon = createIcon(props => {
|
||
|
return (
|
||
|
<svg
|
||
|
{...props}
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
width={props.width}
|
||
|
height={props.height}
|
||
|
fill="none"
|
||
|
viewBox="0 0 20 20"
|
||
|
focusable={false}
|
||
|
aria-hidden={true}
|
||
|
>
|
||
|
<path
|
||
|
fill={props.color}
|
||
|
fillRule="evenodd"
|
||
|
d="M3.6 10a6.4 6.4 0 1 1 12.8 0 6.4 6.4 0 0 1-12.8 0ZM10 2.4a7.6 7.6 0 1 0 0 15.2 7.6 7.6 0 0 0 0-15.2Zm-.277 10.218 3.5-4.5-.947-.736-3.138 4.034L7.61 10.27l-.72.96 2 1.5.471.354.362-.466Z"
|
||
|
clipRule="evenodd"
|
||
|
/>
|
||
|
</svg>
|
||
|
)
|
||
|
})
|
||
|
|
||
|
export default SvgDoneIcon
|