@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 656 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 15V19H16V21H8V19H11V15H4C3.44772 15 3 14.5523 3 14V4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V14C21 14.5523 20.5523 15 20 15H13ZM5 13H19V5H5V13ZM8 8H16V10H8V8Z"/>
</Svg>);
};
Icon.displayName = 'ReservedLine';
/**
* Remix Icon: Reserved Line
* @see {@link https://remixicon.com/icon/reserved-line Remix Icon Docs}
*/
export const ReservedLine = memo(Icon);