{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMagicLamp/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 IconMagicLamp: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"magic-lamp, wish, agents, genie\"><path d=\"M6.75 20.25H15.75C15.75 18.0409 13.9591 16.25 11.75 16.25H11.25H10.75C8.54086 16.25 6.75 18.0409 6.75 20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M23.25 7H20.75C20.5 8 19.5 9.19719 15.5 9.25H8C6.20507 9.25 4.75 10.7051 4.75 12.5C4.75 14.5711 6.42893 16.25 8.5 16.25H13C17.5 16.25 23.25 12 23.25 7Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M11.25 3V4.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15.5 9C15.5 6.65279 13.5972 4.75 11.25 4.75C8.90279 4.75 7 6.65279 7 9\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M2 12.8546C1.26704 12.5579 0.75 11.8393 0.75 11C0.75 9.89543 1.64543 9 2.75 9C3.85457 9 4.75 9.89543 4.75 11V12.5\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconMagicLamp;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAw1B,EAAx1B,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,+GAA+G,OAAO,eAAe,YAAY,MAAM,cAAc,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,0JAA0J,OAAO,eAAe,YAAY,MAAM,cAAc,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,MAAM,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,0EAA0E,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,oHAAoH,OAAO,eAAe,YAAY,MAAK,CAAI,GAGl1B",
  "debugId": "D7E0B8A10A3DB0F264756E2164756E21",
  "names": []
}