@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 688 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="M3 6H21V18H3V6ZM2 4C1.44772 4 1 4.44772 1 5V19C1 19.5523 1.44772 20 2 20H22C22.5523 20 23 19.5523 23 19V5C23 4.44772 22.5523 4 22 4H2ZM13 9H19V11H13V9ZM18 13H13V15H18V13ZM6 13H7V16H9V11H6V13ZM9 8H7V10H9V8Z"/>
</Svg>);
};
Icon.displayName = 'InfoCardLine';
/**
* Remix Icon: Info Card Line
* @see {@link https://remixicon.com/icon/info-card-line Remix Icon Docs}
*/
export const InfoCardLine = memo(Icon);