UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 942 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="M17.456 3 21 3.003l.002 3.523-5.467 5.466 2.828 2.829 1.415-1.414 1.415 1.414-2.475 2.475 2.828 2.829-1.414 1.414-2.829-2.829-2.474 2.475-1.415-1.414 1.414-1.415-2.829-2.828-2.828 2.828 1.415 1.415-1.414 1.414-2.475-2.475-2.829 2.829-1.414-1.414 2.829-2.83-2.475-2.474 1.414-1.414 1.414 1.413 2.827-2.828-5.46-5.46L2.999 3l3.546.003 5.453 5.454zm-7.58 10.406-2.828 2.828.708.707 2.827-2.828zM19 5.001h-.717l-4.87 4.869.706.707L19 5.698zm-14 0v.7l11.241 11.241.707-.707L5.715 5.002z"/> </Svg>); }); Icon.displayName = 'SwordLine'; /** * Remix Icon: Sword Line * @see {@link https://remixicon.com/icon/sword-line Remix Icon Docs} */ export const SwordLine = Icon;