{
  "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=\"M12.1279 9.69918C12.0491 9.65236 11.9511 9.65236 11.8723 9.69918L3.13342 14.8953C2.77739 15.107 2.31716 14.99 2.10546 14.634C1.89377 14.2779 2.01078 13.8177 2.36681 13.606L11.1057 8.40987C11.6569 8.08213 12.3433 8.08213 12.8945 8.40987L21.6334 13.606C21.9895 13.8177 22.1065 14.2779 21.8948 14.634C21.6831 14.99 21.2228 15.107 20.8668 14.8953L12.1279 9.69918Z\" 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,gBAAuf,EAAvf,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0WAA0W,KAAK,eAAc,CAAI,GAGjf",
  "debugId": "211EB57F532643BE64756E2164756E21",
  "names": []
}