{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconChevronTopSmall/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 IconChevronTopSmall: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"chevron-top-small\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.5303 11.5908C12.2374 11.2979 11.7626 11.2979 11.4697 11.5908L8.53033 14.5301C8.23744 14.823 7.76256 14.823 7.46967 14.5301C7.17678 14.2372 7.17678 13.7623 7.46967 13.4694L10.409 10.5301C11.2877 9.65142 12.7123 9.65143 13.591 10.5301L16.5303 13.4694C16.8232 13.7623 16.8232 14.2372 16.5303 14.5301C16.2374 14.823 15.7626 14.823 15.4697 14.5301L12.5303 11.5908Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconChevronTopSmall;\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,gBAA6e,EAA7e,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8WAA8W,KAAK,eAAc,CAAI,GAGve",
  "debugId": "86313103C8806C8D64756E2164756E21",
  "names": []
}