UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 569 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const LineHeight2 = /* @__PURE__ */ memo(function LineHeight2(_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>); }); /** * Remix Icon: Line Height 2 * @see {@link https://remixicon.com/icon/line-height-2 Remix Icon Docs} */ export { LineHeight2 };