react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 435 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgMoonFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M11.38 2.019a7.5 7.5 0 1 0 10.6 10.6C21.662 17.854 17.316 22 12.001 22 6.477 22 2 17.523 2 12c0-5.315 4.146-9.661 9.38-9.981" />
</Svg>
);
export default SvgMoonFill;