{
  "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=\"M13.9092 7.46967C13.6163 7.17678 13.1415 7.17678 12.8486 7.46967L9.90924 10.409C9.03056 11.2877 9.03055 12.7123 9.90924 13.591L12.8486 16.5303C13.1415 16.8232 13.6163 16.8232 13.9092 16.5303C14.2021 16.2374 14.2021 15.7626 13.9092 15.4697L10.9699 12.5303C10.677 12.2374 10.677 11.7626 10.9699 11.4697L13.9092 8.53033C14.2021 8.23744 14.2021 7.76256 13.9092 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,gBAAgf,EAAhf,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gXAAgX,KAAK,eAAc,CAAI,GAG1e",
  "debugId": "DC64C2E5147A7D6964756E2164756E21",
  "names": []
}