{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconQrCode/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconQrCode: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"qr-code, barcode, scan\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 6.75C3 4.67893 4.67893 3 6.75 3H7.25C9.32107 3 11 4.67893 11 6.75V7.25C11 9.32107 9.32107 11 7.25 11H6.75C4.67893 11 3 9.32107 3 7.25V6.75ZM6.75 4.5C5.50736 4.5 4.5 5.50736 4.5 6.75V7.25C4.5 8.49264 5.50736 9.5 6.75 9.5H7.25C8.49264 9.5 9.5 8.49264 9.5 7.25V6.75C9.5 5.50736 8.49264 4.5 7.25 4.5H6.75ZM13 6.75C13 4.67893 14.6789 3 16.75 3H17.25C19.3211 3 21 4.67893 21 6.75V7.25C21 9.32107 19.3211 11 17.25 11H16.75C14.6789 11 13 9.32107 13 7.25V6.75ZM16.75 4.5C15.5074 4.5 14.5 5.50736 14.5 6.75V7.25C14.5 8.49264 15.5074 9.5 16.75 9.5H17.25C18.4926 9.5 19.5 8.49264 19.5 7.25V6.75C19.5 5.50736 18.4926 4.5 17.25 4.5H16.75ZM3 16.75C3 14.6789 4.67893 13 6.75 13H7.25C9.32107 13 11 14.6789 11 16.75V17.25C11 19.3211 9.32107 21 7.25 21H6.75C4.67893 21 3 19.3211 3 17.25V16.75ZM6.75 14.5C5.50736 14.5 4.5 15.5074 4.5 16.75V17.25C4.5 18.4926 5.50736 19.5 6.75 19.5H7.25C8.49264 19.5 9.5 18.4926 9.5 17.25V16.75C9.5 15.5074 8.49264 14.5 7.25 14.5H6.75Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13.75 13C14.1642 13 14.5 13.3358 14.5 13.75V15.5H16.25C16.6642 15.5 17 15.8358 17 16.25C17 16.6642 16.6642 17 16.25 17H13.75C13.3358 17 13 16.6642 13 16.25V13.75C13 13.3358 13.3358 13 13.75 13ZM17 13.75C17 13.3358 17.3358 13 17.75 13H20.25C20.6642 13 21 13.3358 21 13.75C21 14.1642 20.6642 14.5 20.25 14.5H17.75C17.3358 14.5 17 14.1642 17 13.75ZM17 17.75C17 17.3358 17.3358 17 17.75 17H20.25C20.6642 17 21 17.3358 21 17.75C21 18.1642 20.6642 18.5 20.25 18.5H18.5V20.25C18.5 20.6642 18.1642 21 17.75 21C17.3358 21 17 20.6642 17 20.25V17.75Z\" fill=\"currentColor\"/><path d=\"M13 20C13 19.4477 13.4477 19 14 19C14.5523 19 15 19.4477 15 20C15 20.5523 14.5523 21 14 21C13.4477 21 13 20.5523 13 20Z\" fill=\"currentColor\"/><path d=\"M5.5 16.5C5.5 15.9477 5.94772 15.5 6.5 15.5H7.5C8.05228 15.5 8.5 15.9477 8.5 16.5V17.5C8.5 18.0523 8.05228 18.5 7.5 18.5H6.5C5.94772 18.5 5.5 18.0523 5.5 17.5V16.5Z\" fill=\"currentColor\"/><path d=\"M5.5 6.5C5.5 5.94772 5.94772 5.5 6.5 5.5H7.5C8.05228 5.5 8.5 5.94772 8.5 6.5V7.5C8.5 8.05228 8.05228 8.5 7.5 8.5H6.5C5.94772 8.5 5.5 8.05228 5.5 7.5V6.5Z\" fill=\"currentColor\"/><path d=\"M15.5 6.5C15.5 5.94772 15.9477 5.5 16.5 5.5H17.5C18.0523 5.5 18.5 5.94772 18.5 6.5V7.5C18.5 8.05228 18.0523 8.5 17.5 8.5H16.5C15.9477 8.5 15.5 8.05228 15.5 7.5V6.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconQrCode;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAu3E,EAAv3E,IAAqB,EAAO,UAAU,0BAAyB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,y7BAAy7B,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+hBAA+hB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0HAA0H,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uKAAuK,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4JAA4J,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uKAAuK,KAAK,eAAc,CAAI,GAGj3E",
  "debugId": "8FFF53A0EF4E0FD464756E2164756E21",
  "names": []
}