{
  "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.3652 3.0949C12.1382 2.96837 11.8618 2.96837 11.6348 3.0949L2.38483 8.25115C2.14726 8.38359 2 8.63426 2 8.90625C2 9.17824 2.14726 9.42891 2.38483 9.56135L11.6348 14.7176C11.8618 14.8441 12.1382 14.8441 12.3652 14.7176L21.6152 9.56135C21.8527 9.42891 22 9.17824 22 8.90625C22 8.63426 21.8527 8.38359 21.6152 8.25115L12.3652 3.0949Z\" fill=\"currentColor\"/><path d=\"M5.41417 12.75L2.38483 14.4387C2.14726 14.5711 2 14.8218 2 15.0938C2 15.3657 2.14726 15.6164 2.38483 15.7488L11.6348 20.9051C11.8618 21.0316 12.1382 21.0316 12.3652 20.9051L21.6152 15.7488C21.8527 15.6164 22 15.3657 22 15.0938C22 14.8218 21.8527 14.5711 21.6152 14.4387L18.5858 12.75L12.3652 16.2176C12.1382 16.3441 11.8618 16.3441 11.6348 16.2176L5.41417 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,gBAAmzB,EAAnzB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,gVAAgV,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6WAA6W,KAAK,eAAc,CAAI,GAG7yB",
  "debugId": "31EB151E85B8072464756E2164756E21",
  "names": []
}