@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 667 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M2 6L2 18H4L4 6H2ZM9.44975 7.05025L4.5 12L9.44727 16.9473L9.44826 13H14.5501L14.55 16.9492L19.5 11.9995L14.5503 7.04976L14.5502 11H9.44876L9.44975 7.05025ZM20 6H22V18H20V6Z"/>
</Svg>);
};
Icon.displayName = 'ExpandWidthFill';
/**
* Remix Icon: Expand Width Fill
* @see {@link https://remixicon.com/icon/expand-width-fill Remix Icon Docs}
*/
export const ExpandWidthFill = memo(Icon);