@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 559 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="M13 20H11V13H4V20H2V4H4V11H11V4H13V20ZM22 8V16H23.5V18H22V20H20V18H14.5V16.66L19.5 8H22ZM20 11.133L17.19 16H20V11.133Z"/>
</Svg>);
};
Icon.displayName = 'H4';
/**
* Remix Icon: H 4
* @see {@link https://remixicon.com/icon/h-4 Remix Icon Docs}
*/
export const H4 = memo(Icon);