{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconChevronLargeDown/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 IconChevronLargeDown: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"chevron-large-down, chev down, down\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.10546 9.36681C2.31716 9.01078 2.77739 8.89377 3.13342 9.10546L11.8723 14.3016C11.9511 14.3484 12.0491 14.3484 12.1279 14.3016L20.8668 9.10546C21.2228 8.89377 21.6831 9.01078 21.8948 9.36681C22.1065 9.72284 21.9895 10.1831 21.6334 10.3948L12.8945 15.5909C12.3433 15.9186 11.6569 15.9186 11.1057 15.5909L2.36681 10.3948C2.01078 10.1831 1.89377 9.72284 2.10546 9.36681Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconChevronLargeDown;\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,gBAAqgB,EAArgB,IAAqB,EAAO,UAAU,uCAAsC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oXAAoX,KAAK,eAAc,CAAI,GAG/f",
  "debugId": "F077F4E66B3B01A264756E2164756E21",
  "names": []
}