UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 572 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="M2 3v2h2v14H2v2h6v-2H6V5h2V3zm8.2 15h2.154l1.2-3h4.892l1.2 3H21.8L17 6h-2zM16 8.885 17.646 13h-3.292z"/> </Svg>); }); Icon.displayName = 'LineHeight2'; /** * Remix Icon: Line Height 2 * @see {@link https://remixicon.com/icon/line-height-2 Remix Icon Docs} */ export const LineHeight2 = Icon;