react-native-feather
Version:
React Native component for Feather icons
11 lines (10 loc) • 439 B
JavaScript
import * as React from "react";
import Svg, { Path, Circle } from "react-native-svg";
function SvgPercent(props) {
return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}>
<Path d="M19 5L5 19"/>
<Circle cx={6.5} cy={6.5} r={2.5}/>
<Circle cx={17.5} cy={17.5} r={2.5}/>
</Svg>);
}
export default SvgPercent;