UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 630 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const CollapseDiagonal2Line = /* @__PURE__ */ memo(function CollapseDiagonal2Line(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M9 4h2v7H4V9h3.586L3.293 4.707l1.414-1.414L9 7.586zm11 11h-3.586l4.293 4.293-1.414 1.414L15 16.414V20h-2v-7h7z"/> </Svg>); }); /** * Remix Icon: Collapse Diagonal 2 Line * @see {@link https://remixicon.com/icon/collapse-diagonal-2-line Remix Icon Docs} */ export { CollapseDiagonal2Line };