You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
969 B
23 lines
969 B
import React from'react'; |
|
import { Svg, Path } from'react-native-svg'; |
|
|
|
const CompletedIcon = ({size}:{size:number}) => { |
|
return ( |
|
<Svg |
|
viewBox="0 0 1024 1024" |
|
width={size} |
|
height={size} |
|
> |
|
<Path |
|
d="M511.5 888c208 0 376.7-168.5 376.7-376.3S719.6 135.4 511.5 135.4c-208 0-376.7 168.5-376.7 376.3 0.1 207.8 168.7 376.3 376.7 376.3z m0 70.9c-247.2 0-447.7-200.2-447.7-447.2S264.2 64.5 511.5 64.5c247.2 0 447.6 200.2 447.6 447.2 0.1 247-200.4 447.2-447.6 447.2z m0 0" |
|
fill="#707070" |
|
/> |
|
<Path |
|
d="M700.4 378.8c-14.3-13.7-37.2-13.1-50.9 1.2L473.1 565.2l-97-116.7c-12.7-15.2-35.5-17.3-50.7-4.7-15.2 12.7-17.3 35.5-4.7 50.7l122.7 147.6c6.9 8.3 16.8 12.7 26.8 12.9H473c8.9-0.4 17.7-4.1 24.4-11.1l204.2-214.3c13.7-14.2 13.2-37.1-1.2-50.8z" |
|
fill="#707070" |
|
/> |
|
</Svg> |
|
); |
|
}; |
|
|
|
export default CompletedIcon; |