forked from
jollywhoppers.com/witchsky.app
Bluesky app fork with some witchin' additions 馃挮
1import React from 'react'
2import Svg, {Circle, Path} from 'react-native-svg'
3
4import {type Props, useCommonSVGProps} from '#/components/icons/common'
5
6export const VerifiedCheck = React.forwardRef<Svg, Props>(
7 function LogoImpl(props, ref) {
8 const {fill, size, style, ...rest} = useCommonSVGProps(props)
9
10 return (
11 <Svg
12 fill="none"
13 {...rest}
14 ref={ref}
15 viewBox="0 0 24 24"
16 width={size}
17 height={size}
18 style={[style]}>
19 <Circle cx="12" cy="12" r="11.5" fill={fill} />
20 <Path
21 fill="#fff"
22 fillRule="evenodd"
23 clipRule="evenodd"
24 d="M17.659 8.175a1.361 1.361 0 0 1 0 1.925l-6.224 6.223a1.361 1.361 0 0 1-1.925 0L6.4 13.212a1.361 1.361 0 0 1 1.925-1.925l2.149 2.148 5.26-5.26a1.361 1.361 0 0 1 1.925 0Z"
25 />
26 </Svg>
27 )
28 },
29)