UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 720 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="m12 13.41-2.554 2.555a4 4 0 1 1-1.414-1.414l2.554-2.554-6.021-6.021a2 2 0 0 1 0-2.829L12 10.582l7.435-7.435a2 2 0 0 1 0 2.829l-6.02 6.02 2.553 2.554a4 4 0 1 1-1.414 1.414zm-6 6.587a2 2 0 1 0 0-4 2 2 0 0 0 0 4m12 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4"/> </Svg>); }); Icon.displayName = 'Scissors2Line'; /** * Remix Icon: Scissors 2 Line * @see {@link https://remixicon.com/icon/scissors-2-line Remix Icon Docs} */ export const Scissors2Line = Icon;