@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="M21 15V20.0066C21 20.5552 20.5551 21 20.0066 21H3.9934C3.44476 21 3 20.5551 3 20.0066V15H21ZM2 11H22V13H2V11ZM21 9H3V3.9934C3 3.44476 3.44495 3 3.9934 3H20.0066C20.5552 3 21 3.44495 21 3.9934V9Z"/>
</Svg>);
};
Icon.displayName = 'QrScanFill';
/**
* Remix Icon: Qr Scan Fill
* @see {@link https://remixicon.com/icon/qr-scan-fill Remix Icon Docs}
*/
export const QrScanFill = memo(Icon);