{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLayersTwo/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 IconLayersTwo: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"layers-two, stack\"><path d=\"M12.7774 3.18281C12.2876 2.93906 11.7124 2.93907 11.2226 3.18281L2.97341 7.28745C1.67553 7.93326 1.67553 9.79202 2.97341 10.4378L11.2226 14.5425C11.7124 14.7862 12.2876 14.7862 12.7774 14.5425L21.0266 10.4378C22.3245 9.79202 22.3245 7.93326 21.0266 7.28745L12.7774 3.18281Z\" fill=\"currentColor\"/><path d=\"M4.60567 12.75L2.97341 13.5622C1.67554 14.208 1.67553 16.0667 2.97341 16.7125L11.2226 20.8172C11.7124 21.0609 12.2876 21.0609 12.7774 20.8172L21.0266 16.7125C22.3245 16.0667 22.3245 14.208 21.0266 13.5622L19.3943 12.75L12.7774 16.0425C12.2876 16.2862 11.7124 16.2862 11.2226 16.0425L4.60567 12.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayersTwo;\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,gBAAsrB,EAAtrB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,oRAAoR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4SAA4S,KAAK,eAAc,CAAI,GAGhrB",
  "debugId": "BED7892ADB8A5FCC64756E2164756E21",
  "names": []
}