UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

8 lines (7 loc) 675 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgMoon(props) { return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props }, React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M18.25 15.75c-1.015.54-2.02.5-3.25.5A7.25 7.25 0 017.75 9c0-1.23-.04-2.235.5-3.25-2.289 1.219-3.5 3.476-3.5 6.25A7.25 7.25 0 0012 19.25c2.774 0 5.031-1.211 6.25-3.5zM16 4.75C16 6.96 14.96 9 12.75 9 14.96 9 16 11.04 16 13.25 16 11.04 17.04 9 19.25 9 17.04 9 16 6.96 16 4.75z" }))); } export default SvgMoon;