{
  "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.4095 3C17.6648 3 19.9185 4.31595 20.5531 6.6377C20.7831 7.47938 20.9417 8.34627 20.9886 9.25488C21.0408 10.2651 20.2023 11 19.2865 11H18.0033V16.25C18.0033 16.6642 17.6675 17 17.2533 17C16.8392 16.9998 16.5033 16.6641 16.5033 16.25V11H12.7533V19.5H16.2533C16.6675 19.5 17.0033 19.8358 17.0033 20.25C17.0033 20.6642 16.6675 21 16.2533 21H7.75329C7.33924 20.9998 7.00329 20.6641 7.00329 20.25C7.00329 19.8359 7.33924 19.5002 7.75329 19.5H11.2533V11H4.72008C3.80441 10.9998 2.9658 10.265 3.01793 9.25488C3.06484 8.34626 3.22342 7.47938 3.45348 6.6377C4.08808 4.31607 6.3419 3.00016 8.59704 3H15.4095Z\" 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,gBAA2rB,EAA3rB,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,EAAE,4lBAA4lB,KAAK,eAAc,CAAI,GAGrrB",
  "debugId": "857FA55A3DA1EB2F64756E2164756E21",
  "names": []
}