@nant-design/nant-icons
Version:
28 lines (16 loc) • 1.18 kB
JSX
import React from 'react';
export const QrCodeOutline = ({width="410",height="404",...other}) => {
return <svg width='1.33em' height='1.33em' fill="currentColor" viewBox="0 0 512 512" {...other}>
<rect x="336" y="336" width="80" height="80" rx="8" ry="8"/>
<rect x="272" y="272" width="64" height="64" rx="8" ry="8"/>
<rect x="416" y="416" width="64" height="64" rx="8" ry="8"/>
<rect x="432" y="272" width="48" height="48" rx="8" ry="8"/>
<rect x="272" y="432" width="48" height="48" rx="8" ry="8"/>
<rect x="336" y="96" width="80" height="80" rx="8" ry="8"/>
<rect x="288" y="48" width="176" height="176" rx="16" ry="16" fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
<rect x="96" y="96" width="80" height="80" rx="8" ry="8"/>
<rect x="48" y="48" width="176" height="176" rx="16" ry="16" fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
<rect x="96" y="336" width="80" height="80" rx="8" ry="8"/>
<rect x="48" y="288" width="176" height="176" rx="16" ry="16" fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
</svg>;
};