{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconChevronLargeTop/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 IconChevronLargeTop: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"chevron-large-top, chev top, up\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13.15 10.3063C12.4413 9.88489 11.5589 9.88489 10.8502 10.3063L3.13342 14.8946C2.77739 15.1063 2.31716 14.9893 2.10546 14.6333C1.89377 14.2773 2.01078 13.817 2.36681 13.6053L10.0836 9.01697C11.2648 8.31465 12.7355 8.31465 13.9166 9.01697L21.6334 13.6053C21.9895 13.817 22.1065 14.2773 21.8948 14.6333C21.6831 14.9893 21.2228 15.1063 20.8668 14.8946L13.15 10.3063Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconChevronLargeTop;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAA2f,EAA3f,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8WAA8W,KAAK,eAAc,CAAI,GAGrf",
  "debugId": "64F6917C43EDFA7F64756E2164756E21",
  "names": []
}