22 lines
515 B
TypeScript
22 lines
515 B
TypeScript
import { createIcon } from '../lib/create-icon'
|
|
|
|
const SvgCheckCircleIcon = 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}
|
|
>
|
|
<circle cx={10} cy={10} r={7.5} fill="#23ADA0" />
|
|
<path stroke="#fff" strokeWidth={1.2} d="m7.25 10.75 2 1.5 3.5-4.5" />
|
|
</svg>
|
|
)
|
|
})
|
|
|
|
export default SvgCheckCircleIcon
|