{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShadows/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 IconShadows: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"shadows\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.5V6H18.0208C16.4818 4.45569 14.3525 3.5 12 3.5ZM19.2124 7.5H12V9.5H20.1264C19.908 8.78911 19.5988 8.11794 19.2124 7.5ZM20.4418 11H12V13H20.4418C20.4802 12.672 20.5 12.3383 20.5 12C20.5 11.6617 20.4802 11.328 20.4418 11ZM20.1264 14.5H12V16.5H19.2124C19.5988 15.8821 19.908 15.2109 20.1264 14.5ZM18.0208 18H12V20.5C14.3525 20.5 16.4818 19.5443 18.0208 18ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconShadows;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA+kB,EAA/kB,IAAqB,EAAO,UAAU,WAAU,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0dAA0d,KAAK,eAAc,CAAI,GAGzkB",
  "debugId": "7C723FB7B025A0D664756E2164756E21",
  "names": []
}