sebikostudio-icons
Version:
A collection of icon components
19 lines (14 loc) • 1.16 kB
JavaScript
import React, { forwardRef } from 'react';
export const QRCodeIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "qrcode, scanning, scanner, boxes, qr"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M1.5 6.5V1.5H6.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M18.5 6.5V1.5H13.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M1.5 13.5V18.5H6.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M18.5 13.5V18.5H13.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M4.5 4.5H8.5V8.5H4.5V4.5Z" stroke="currentColor" strokeLinejoin="round"/>
<path d="M4.5 11.5H8.5V15.5H4.5V11.5Z" stroke="currentColor" strokeLinejoin="round"/>
<path d="M11.5 4.5H15.5V8.5H11.5V4.5Z" stroke="currentColor" strokeLinejoin="round"/>
<path d="M11.5 11.5H15.5V15.5H11.5V11.5Z" stroke="currentColor" strokeLinejoin="round"/>
</svg>
));
export default QRCodeIcon;