react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 581 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgScissorsFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M9.683 7.562L12 9.88l6.374-6.375a2 2 0 012.829 0l.707.707L9.683 16.438a4 4 0 11-2.121-2.121L9.88 12 7.562 9.683a4 4 0 112.121-2.121zM6 8a2 2 0 100-4 2 2 0 000 4zm0 12a2 2 0 100-4 2 2 0 000 4zm9.535-6.587l6.375 6.376-.707.707a2 2 0 01-2.829 0l-4.96-4.961 2.12-2.122z" />
</Svg>
);
}
export default SvgScissorsFill;