Skip to content

Instantly share code, notes, and snippets.

@ruvaleev
Created November 25, 2021 13:38
Show Gist options
  • Save ruvaleev/e86b09aecb3c976ee26cfeee43459a95 to your computer and use it in GitHub Desktop.
Save ruvaleev/e86b09aecb3c976ee26cfeee43459a95 to your computer and use it in GitHub Desktop.
import * as React from "react"
import Svg, { G, Rect, Path, Defs } from "react-native-svg"
/* SVGR has dropped some elements not supported by react-native-svg: filter */
function HardGreenCircle(props) {
return (
<Svg
width={72}
height={72}
viewBox="0 0 72 72"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<Rect width={72} height={72} rx={36} fill="#FCFCFC" />
<Path
d="M35.9999 52.6666C26.7949 52.6666 19.3333 45.2049 19.3333 35.9999C19.3333 26.7949 26.7949 19.3333 35.9999 19.3333C45.2049 19.3333 52.6666 26.7949 52.6666 35.9999C52.6666 45.2049 45.2049 52.6666 35.9999 52.6666ZM32.9239 41.2523C33.705 42.0334 34.9714 42.0333 35.7525 41.2522L44.9434 32.0599C45.5941 31.4091 45.5941 30.3541 44.9433 29.7033C44.2925 29.0525 43.2374 29.0526 42.5866 29.7035L35.7525 36.5388C34.9714 37.32 33.705 37.32 32.9239 36.5389L30.8016 34.4166C30.1508 33.7658 29.0957 33.7658 28.4449 34.4166C27.7941 35.0674 27.7941 36.1225 28.4449 36.7733L32.9239 41.2523Z"
fill="#53D86A"
/>
<Defs></Defs>
</Svg>
)
}
export default HardGreenCircle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment