/** * QR Code Icon * @category tech */ import type { IconDefinition } from '../../types'; export const qrCode: IconDefinition = { name: 'qr-code', category: 'tech', description: 'QR code scanner', tags: ['qr', 'code', 'scan', 'barcode', 'reader'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default qrCode;