{
  "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.406 3C17.6612 3.0001 19.915 4.31599 20.5495 6.6377C20.8653 7.79313 21.046 8.99375 20.989 10.2832C20.9712 10.684 20.6412 10.9999 20.24 11H17.9997V16.25C17.9997 16.6641 17.6638 16.9999 17.2497 17C16.8355 17 16.4997 16.6642 16.4997 16.25V11H12.7497V19.5H16.2497C16.6638 19.5001 16.9997 19.8359 16.9997 20.25C16.9997 20.6641 16.6638 20.9999 16.2497 21H7.74974C7.33552 21 6.99974 20.6642 6.99974 20.25C6.99974 19.8358 7.33552 19.5 7.74974 19.5H11.2497V11H3.7595C3.35821 11 3.02826 10.6841 3.01048 10.2832C2.95334 8.9937 3.1341 7.79316 3.44993 6.6377C4.08459 4.31599 6.33825 3.00002 8.59349 3H15.406Z\" 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,gBAAwrB,EAAxrB,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,EAAE,ylBAAylB,KAAK,eAAc,CAAI,GAGlrB",
  "debugId": "3574CDED0F79CBDE64756E2164756E21",
  "names": []
}