{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconChevronDoubleLeft/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 IconChevronDoubleLeft: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"chevron-double-left\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.5301 7.46967C10.823 7.76256 10.823 8.23744 10.5301 8.53033L7.59076 11.4697C7.29787 11.7626 7.29787 12.2374 7.59076 12.5303L10.5301 15.4697C10.823 15.7626 10.823 16.2374 10.5301 16.5303C10.2372 16.8232 9.76234 16.8232 9.46944 16.5303L6.5301 13.591C5.65142 12.7123 5.65143 11.2877 6.5301 10.409L9.46944 7.46967C9.76234 7.17678 10.2372 7.17678 10.5301 7.46967ZM17.5301 7.46967C17.823 7.76256 17.823 8.23744 17.5301 8.53033L14.5908 11.4697C14.2979 11.7626 14.2979 12.2374 14.5908 12.5303L17.5301 15.4697C17.823 15.7626 17.823 16.2374 17.5301 16.5303C17.2372 16.8232 16.7623 16.8232 16.4694 16.5303L13.5301 13.591C12.6514 12.7123 12.6514 11.2877 13.5301 10.409L16.4694 7.46967C16.7623 7.17678 17.2372 7.17678 17.5301 7.46967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconChevronDoubleLeft;\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,EAAwD,CAAC,IAAU,CAC9E,OAAO,gBAAw1B,EAAx1B,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,utBAAutB,KAAK,eAAc,CAAI,GAGl1B",
  "debugId": "FC2C7A8958466F4A64756E2164756E21",
  "names": []
}