@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 648 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M16 17v-1h-3v-3h3v2h2v2h-1v2h-2v2h-2v-3h2v-1zm5 4h-4v-2h2v-2h2zM3 3h8v8H3zm2 2v4h4V5zm8-2h8v8h-8zm2 2v4h4V5zM3 13h8v8H3zm2 2v4h4v-4zm13-2h3v2h-3zM6 6h2v2H6zm0 10h2v2H6zM16 6h2v2h-2z"/>
</Svg>);
});
Icon.displayName = 'QrCodeLine';
/**
* Remix Icon: Qr Code Line
* @see {@link https://remixicon.com/icon/qr-code-line Remix Icon Docs}
*/
export const QrCodeLine = Icon;