{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMathMultiplication/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 IconMathMultiplication: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"math-multiplication\"><path d=\"M4.75 12H19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M11.75 6.25H12.25M12.5 6.25C12.5 6.52614 12.2761 6.75 12 6.75C11.7239 6.75 11.5 6.52614 11.5 6.25C11.5 5.97386 11.7239 5.75 12 5.75C12.2761 5.75 12.5 5.97386 12.5 6.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M11.75 17.75H12.25M12.5 17.75C12.5 18.0261 12.2761 18.25 12 18.25C11.7239 18.25 11.5 18.0261 11.5 17.75C11.5 17.4739 11.7239 17.25 12 17.25C12.2761 17.25 12.5 17.4739 12.5 17.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconMathMultiplication;\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,EAAyD,CAAC,IAAU,CAC/E,OAAO,gBAAuoB,EAAvoB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,2KAA2K,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,qLAAqL,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,CAAI,GAGjoB",
  "debugId": "08CF5569AB2FA86464756E2164756E21",
  "names": []
}