{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconChevronLeftSmall/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 IconChevronLeftSmall: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"chevron-left-small\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.3233 7.46967C14.0304 7.17678 13.5555 7.17678 13.2626 7.46967L9.61619 11.1161C9.12804 11.6043 9.12804 12.3957 9.61619 12.8839L13.2626 16.5303C13.5555 16.8232 14.0304 16.8232 14.3233 16.5303C14.6162 16.2374 14.6162 15.7626 14.3233 15.4697L10.8536 12L14.3233 8.53033C14.6162 8.23744 14.6162 7.76256 14.3233 7.46967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconChevronLeftSmall;\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,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAA+b,EAA/b,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+TAA+T,KAAK,eAAc,CAAI,GAGzb",
  "debugId": "0AB31DB29396F56864756E2164756E21",
  "names": []
}