{
  "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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.75 2C5.67893 2 4 3.67893 4 5.75V18.25C4 20.3211 5.67893 22 7.75 22H16.25C18.3211 22 20 20.3211 20 18.25V5.75C20 3.67893 18.3211 2 16.25 2H7.75ZM18.5 7V5.75C18.5 4.50736 17.4926 3.5 16.25 3.5H7.75C6.50736 3.5 5.5 4.50736 5.5 5.75V7H18.5ZM9.5 13.25C10.0523 13.25 10.5 12.8023 10.5 12.25C10.5 11.6977 10.0523 11.25 9.5 11.25C8.94772 11.25 8.5 11.6977 8.5 12.25C8.5 12.8023 8.94772 13.25 9.5 13.25ZM9.5 17.75C10.0523 17.75 10.5 17.3023 10.5 16.75C10.5 16.1977 10.0523 15.75 9.5 15.75C8.94772 15.75 8.5 16.1977 8.5 16.75C8.5 17.3023 8.94772 17.75 9.5 17.75ZM15.5 12.25C15.5 12.8023 15.0523 13.25 14.5 13.25C13.9477 13.25 13.5 12.8023 13.5 12.25C13.5 11.6977 13.9477 11.25 14.5 11.25C15.0523 11.25 15.5 11.6977 15.5 12.25ZM14.5 17.75C15.0523 17.75 15.5 17.3023 15.5 16.75C15.5 16.1977 15.0523 15.75 14.5 15.75C13.9477 15.75 13.5 16.1977 13.5 16.75C13.5 17.3023 13.9477 17.75 14.5 17.75Z\" fill=\"currentColor\"/></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,gBAA8+B,EAA9+B,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,s3BAAs3B,KAAK,eAAc,CAAI,GAGx+B",
  "debugId": "43D9FDA50025049864756E2164756E21",
  "names": []
}