@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 597 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const ExpandHorizontalSFill = /* @__PURE__ */ memo(function ExpandHorizontalSFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M7.45 7.05 2.5 12l4.947 4.947L7.448 13h9.102v3.95L21.5 12l-4.95-4.95V11H7.45z"/>
</Svg>);
});
/**
* Remix Icon: Expand Horizontal S Fill
* @see {@link https://remixicon.com/icon/expand-horizontal-s-fill Remix Icon Docs}
*/
export { ExpandHorizontalSFill };