{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCalculator/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 IconCalculator: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"calculator\"><path d=\"M4.75 7.75V21.25H19.25V7.75M4.75 7.75H19.25M4.75 7.75V2.75H19.25V7.75\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M9.5 16C9.91421 16 10.25 16.3358 10.25 16.75C10.25 17.1642 9.91421 17.5 9.5 17.5C9.08579 17.5 8.75 17.1642 8.75 16.75C8.75 16.3358 9.08579 16 9.5 16ZM14.5 16C14.9142 16 15.25 16.3358 15.25 16.75C15.25 17.1642 14.9142 17.5 14.5 17.5C14.0858 17.5 13.75 17.1642 13.75 16.75C13.75 16.3358 14.0858 16 14.5 16ZM9.5 11.5C9.91421 11.5 10.25 11.8358 10.25 12.25C10.25 12.6642 9.91421 13 9.5 13C9.08579 13 8.75 12.6642 8.75 12.25C8.75 11.8358 9.08579 11.5 9.5 11.5ZM14.5 11.5C14.9142 11.5 15.25 11.8358 15.25 12.25C15.25 12.6642 14.9142 13 14.5 13C14.0858 13 13.75 12.6642 13.75 12.25C13.75 11.8358 14.0858 11.5 14.5 11.5Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/></CentralIconBase>;\n};\n\nexport default IconCalculator;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAA01B,EAA11B,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,EAAE,wEAAwE,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,umBAAumB,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,CAAI,GAGp1B",
  "debugId": "3240C3A9BD98E62B64756E2164756E21",
  "names": []
}