{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMathLessThan/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 IconMathLessThan: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"math-less-than, <\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.9412 6.45977C18.7808 6.07787 18.3412 5.89831 17.9593 6.05871L5.45933 11.3087C5.18089 11.4257 4.99976 11.6982 4.99976 12.0002C4.99976 12.3022 5.18089 12.5747 5.45933 12.6917L17.9593 17.9417C18.3412 18.1021 18.7808 17.9225 18.9412 17.5406C19.1016 17.1587 18.9221 16.7191 18.5402 16.5587L7.68658 12.0002L18.5402 7.44168C18.9221 7.28128 19.1016 6.84167 18.9412 6.45977Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMathLessThan;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAmf,EAAnf,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oXAAoX,KAAK,eAAc,CAAI,GAG7e",
  "debugId": "A78AB5974503B25F64756E2164756E21",
  "names": []
}