{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconChevronRight/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 IconChevronRight: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"chevron-right\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.46967 3.46967C8.76256 3.17678 9.23744 3.17678 9.53033 3.46967L15.409 9.34833C16.8735 10.8128 16.8735 13.1872 15.409 14.6516L9.53033 20.5303C9.23744 20.8232 8.76256 20.8232 8.46967 20.5303C8.17678 20.2374 8.17678 19.7626 8.46967 19.4697L14.3484 13.591C15.227 12.7123 15.227 11.2877 14.3483 10.409L8.46967 4.53033C8.17678 4.23744 8.17678 3.76256 8.46967 3.46967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconChevronRight;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAye,EAAze,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8WAA8W,KAAK,eAAc,CAAI,GAGne",
  "debugId": "C4CE87BD3C2D5FB864756E2164756E21",
  "names": []
}