UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 442 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgDiscFill(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M13 9.17A3 3 0 1015 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.337 0 .671.017 1 .05v7.12z" /> </Svg> ); } export default SvgDiscFill;