{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLayersThree/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 IconLayersThree: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"layers-three, stack\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.998 2.90625L21.8858 7.99992L11.998 13.0936L2.11034 7.99992L11.998 2.90625ZM5.38576 7.99992L11.998 11.4062L18.6103 7.99992L11.998 4.59359L5.38576 7.99992Z\" fill=\"currentColor\"/><path d=\"M21.8858 11.9999L11.998 17.0936L2.11034 11.9999L3.74773 11.1564L11.998 15.4062L20.2478 11.1561L21.8858 11.9999Z\" fill=\"currentColor\"/><path d=\"M21.8848 16L11.9971 21.0936L2.10938 16L3.74677 15.1565L11.9971 19.4063L20.2468 15.1562L21.8848 16Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayersThree;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAkjB,EAAljB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gKAAgK,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qGAAqG,KAAK,eAAc,CAAI,GAG5iB",
  "debugId": "F065ADF4B8A03A2E64756E2164756E21",
  "names": []
}