@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 565 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const ExpandDiagonalSLine = /* @__PURE__ */ memo(function ExpandDiagonalSLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M15.586 7H12V5h7v7h-2V8.414L8.414 17H12v2H5v-7h2v3.586z"/>
</Svg>);
});
/**
* Remix Icon: Expand Diagonal S Line
* @see {@link https://remixicon.com/icon/expand-diagonal-s-line Remix Icon Docs}
*/
export { ExpandDiagonalSLine };