@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 669 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="M18 2H6V4H18V2ZM16.9497 9.44975L12 4.5L7.05273 9.44727L11 9.44826V14.5501L7.05078 14.55L12.0005 19.5L16.9502 14.5503L13 14.5502V9.44876L16.9497 9.44975ZM18 20V22H6V20H18Z"/>
</Svg>);
};
Icon.displayName = 'ExpandHeightFill';
/**
* Remix Icon: Expand Height Fill
* @see {@link https://remixicon.com/icon/expand-height-fill Remix Icon Docs}
*/
export const ExpandHeightFill = memo(Icon);