@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 377 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" viewBox="0 0 24 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 2c.338 0 .671.017 1 .05v7.12Z" />
</Svg>
);
export default SvgDiscFill;