{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDeskLamp/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 IconDeskLamp: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"desk-lamp, light, study\"><path d=\"M15.4035 3C17.6588 3 19.9125 4.31593 20.5471 6.6377C20.6895 7.15899 20.8048 7.69039 20.883 8.23535C21.1132 9.8398 19.7514 10.9998 18.3244 11H17.9973V16.25C17.9973 16.6642 17.6615 17 17.2473 17C16.8331 16.9999 16.4973 16.6641 16.4973 16.25V11H12.7473V19.5H16.2473C16.6615 19.5 16.9973 19.8358 16.9973 20.25C16.9973 20.6642 16.6615 21 16.2473 21H7.74727C7.33315 20.9999 6.99727 20.6641 6.99727 20.25C6.99727 19.8359 7.33315 19.5001 7.74727 19.5H11.2473V11H5.67012C4.2432 10.9998 2.88126 9.83979 3.11152 8.23535C3.18976 7.69034 3.30496 7.15902 3.44746 6.6377C4.08207 4.31602 6.33582 3.0001 8.59102 3H15.4035Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconDeskLamp;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAA+rB,EAA/rB,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,EAAE,gmBAAgmB,KAAK,eAAc,CAAI,GAGzrB",
  "debugId": "00F5C3B4AD69E0A464756E2164756E21",
  "names": []
}