mirror of
https://github.com/status-im/status-web.git
synced 2025-03-02 13:10:52 +00:00
21 lines
448 B
TypeScript
21 lines
448 B
TypeScript
|
import { createIcon } from '../lib/create-icon'
|
||
|
|
||
|
const SvgCheckIcon = 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 stroke={props.color} strokeWidth={1.2} d="m4.5 11 4 3.5 7-9.5" />
|
||
|
</svg>
|
||
|
)
|
||
|
})
|
||
|
|
||
|
export default SvgCheckIcon
|