UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 613 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="M6.414 5H10V3H3v7h2V6.414l4.293 4.293 1.414-1.414zM21 14h-2v3.586l-4.293-4.293-1.414 1.414L17.586 19H14v2h7z"/> </Svg>); }); Icon.displayName = 'ExpandDiagonal2Line'; /** * Remix Icon: Expand Diagonal 2 Line * @see {@link https://remixicon.com/icon/expand-diagonal-2-line Remix Icon Docs} */ export const ExpandDiagonal2Line = Icon;