UNPKG

react-native-remix-icon

Version:
16 lines (15 loc) 430 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgRssLine = props => ( <Svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" width={24} height={24} {...props} > <Path d="M3 17a4 4 0 0 1 4 4H3zm0-7c6.075 0 11 4.925 11 11h-2a9 9 0 0 0-9-9zm0-7c9.941 0 18 8.059 18 18h-2c0-8.837-7.163-16-16-16z" /> </Svg> ); export default SvgRssLine;