react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 507 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgRssAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M2.88 16.88a3 3 0 104.24 4.24 3 3 0 000-4.24 3.08 3.08 0 00-4.24 0zm2.83 2.83a1 1 0 01-1.42 0 1 1 0 010-1.42 1 1 0 011.42 0 1 1 0 010 1.42zM5 12a1 1 0 000 2 5 5 0 015 5 1 1 0 002 0 7 7 0 00-7-7zm0-4a1 1 0 000 2 9 9 0 019 9 1 1 0 002 0A11 11 0 005 8z" fill="currentColor"/>
</Svg>);
}
export default SvgRssAlt;