{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMathBasic/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 IconMathBasic: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"math-basic, calc\"><path d=\"M7 3.75V10.25M3.75 7H10.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M13.75 7H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M13.75 17H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M4.25 14.25L7.00002 17M7.00002 17L9.75 19.75M7.00002 17L4.25 19.75M7.00002 17L9.75 14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M17 14V13.99M17.25 14C17.25 14.1381 17.1381 14.25 17 14.25C16.8619 14.25 16.75 14.1381 16.75 14C16.75 13.8619 16.8619 13.75 17 13.75C17.1381 13.75 17.25 13.8619 17.25 14Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M17 20V19.99M17.25 20C17.25 20.1381 17.1381 20.25 17 20.25C16.8619 20.25 16.75 20.1381 16.75 20C16.75 19.8619 16.8619 19.75 17 19.75C17.1381 19.75 17.25 19.8619 17.25 20Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconMathBasic;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAq/B,EAAr/B,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,2FAA2F,OAAO,eAAe,YAAY,MAAM,cAAc,SAAS,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,6KAA6K,OAAO,eAAe,YAAY,MAAM,cAAc,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,6KAA6K,OAAO,eAAe,YAAY,MAAM,cAAc,QAAO,CAAI,GAG/+B",
  "debugId": "FC168B6A24D73A3C64756E2164756E21",
  "names": []
}