{
  "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.05846 6.45977C5.21886 6.07787 5.65848 5.89831 6.04037 6.05871L18.5404 11.3087C18.8188 11.4257 19 11.6982 19 12.0002C19 12.3022 18.8188 12.5747 18.5404 12.6917L6.04037 17.9417C5.65848 18.1021 5.21886 17.9225 5.05846 17.5406C4.89807 17.1587 5.07763 16.7191 5.45953 16.5587L16.3131 12.0002L5.45953 7.44168C5.07763 7.28128 4.89807 6.84167 5.05846 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": "C7AA791C8C150A6064756E2164756E21",
  "names": []
}