{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMathGreaterThan/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 IconMathGreaterThan: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"math-greater-than, >\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.05853 6.45977C5.21892 6.07787 5.65854 5.89831 6.04044 6.05871L18.5404 11.3087C18.8189 11.4257 19 11.6982 19 12.0002C19 12.3022 18.8189 12.5747 18.5404 12.6917L6.04044 17.9417C5.65854 18.1021 5.21892 17.9225 5.05853 17.5406C4.89813 17.1587 5.07769 16.7191 5.45959 16.5587L16.3132 12.0002L5.45959 7.44168C5.07769 7.28128 4.89813 6.84167 5.05853 6.45977Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMathGreaterThan;\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,gBAAue,EAAve,IAAqB,EAAO,UAAU,wBAAuB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qWAAqW,KAAK,eAAc,CAAI,GAGje",
  "debugId": "322F90709210994864756E2164756E21",
  "names": []
}