react-native-feather
Version:
React Native component for Feather icons
11 lines (10 loc) • 468 B
JavaScript
import * as React from "react";
import Svg, { Circle, Path } from "react-native-svg";
function SvgScissors(props) {
return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}>
<Circle cx={6} cy={6} r={3}/>
<Circle cx={6} cy={18} r={3}/>
<Path d="M20 4L8.12 15.88M14.47 14.48L20 20M8.12 8.12L12 12"/>
</Svg>);
}
export default SvgScissors;