UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 606 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const CollapseVerticalFill = /* @__PURE__ */ memo(function CollapseVerticalFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="m12 13.5 4.95 4.95-3.95-.002V23h-2v-4.552l-3.948-.001zM11 1v4.55H7.05L12 10.5l4.95-4.95H13V1z"/> </Svg>); }); /** * Remix Icon: Collapse Vertical Fill * @see {@link https://remixicon.com/icon/collapse-vertical-fill Remix Icon Docs} */ export { CollapseVerticalFill };