@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 673 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="M1 5C1 4.44772 1.44772 4 2 4H22C22.5523 4 23 4.44772 23 5V19C23 19.5523 22.5523 20 22 20H2C1.44772 20 1 19.5523 1 19V5ZM9 8H7V10H9V8ZM7 13V16H9V11H6V13H7ZM13 9V11H19V9H13ZM18 13H13V15H18V13Z"/>
</Svg>);
};
Icon.displayName = 'InfoCardFill';
/**
* Remix Icon: Info Card Fill
* @see {@link https://remixicon.com/icon/info-card-fill Remix Icon Docs}
*/
export const InfoCardFill = memo(Icon);