react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 433 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDiscFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M13 9.17A3 3 0 1 0 15 12V2.458c4.057 1.274 7 5.064 7 9.542 0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2q.507 0 1 .05z" />
</Svg>
);
export default SvgDiscFill;