@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 632 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const CollapseDiagonalFill = /* @__PURE__ */ memo(function CollapseDiagonalFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M20.5 11H13V3.5l3.043 3.043 3.25-3.25 1.414 1.414-3.25 3.25zm-17 2H11v7.5l-3.043-3.043-3.25 3.25-1.414-1.414 3.25-3.25z"/>
</Svg>);
});
/**
* Remix Icon: Collapse Diagonal Fill
* @see {@link https://remixicon.com/icon/collapse-diagonal-fill Remix Icon Docs}
*/
export { CollapseDiagonalFill };