Created
June 12, 2019 02:17
-
-
Save piotrkuklo/02c25c585dfa891e71e20e6afa3afe0e to your computer and use it in GitHub Desktop.
SVG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from "react" | |
import { Frame, useCycle } from "framer" | |
// Open Preview (CMD + P) | |
// API Reference: https://www.framer.com/api | |
export function SvgComponent() { | |
return ( | |
<svg width={24} height={24} fillRule="evenodd" clipRule="evenodd"> | |
<path d="M12 10a2 2 0 1 1 .001-4.001A2 2 0 0 1 12 10m0-5a3 3 0 1 0 0 6 3 3 0 0 0 0-6M5 7.602C5 4.085 8.271 1 12 1s7 3.085 7 6.602c0 3.455-2.563 7.543-7 14.527-4.489-7.073-7-11.072-7-14.527M12 0C7.802 0 4 3.403 4 7.602 4 11.8 7.469 16.812 12 24c4.531-7.188 8-12.2 8-16.398C20 3.403 16.199 0 12 0" /> | |
</svg> | |
) | |
} | |
export default SvgComponent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment