UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 533 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const QrScan2Fill = /* @__PURE__ */ memo(function QrScan2Fill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M15 3h6v6h-6zM9 3v6H3V3zm6 18v-6h6v6zm-6 0H3v-6h6zM3 11h18v2H3z"/> </Svg>); }); /** * Remix Icon: Qr Scan 2 Fill * @see {@link https://remixicon.com/icon/qr-scan-2-fill Remix Icon Docs} */ export { QrScan2Fill };