{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDumbell/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\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  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\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      {masked ? (\n        <>\n          <mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <g fill=\"none\" style={{ color: \"#fff\" }}>\n              {children}\n            </g>\n          </mask>\n          <rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDumbell: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} ariaLabel=\"dumbell, fitness, training\" maskId=\"round-filled-radius-0-stroke-1.5-IconDumbell\"><path d=\"M2.45305 17.3033C2.06253 16.9127 2.06253 16.2796 2.45305 15.8891L2.98338 15.3587C3.3739 14.9682 4.00707 14.9682 4.39759 15.3587L8.64023 19.6014C9.03076 19.9919 9.03076 20.6251 8.64023 21.0156L8.1099 21.5459C7.71938 21.9364 7.08621 21.9364 6.69569 21.5459L2.45305 17.3033Z\" fill=\"currentColor\"/><path d=\"M15.3577 4.39857C14.9672 4.00805 14.9672 3.37488 15.3577 2.98436L15.8881 2.45403C16.2786 2.0635 16.9118 2.0635 17.3023 2.45403L21.5449 6.69667C21.9355 7.08719 21.9355 7.72036 21.5449 8.11088L21.0146 8.64121C20.6241 9.03173 19.9909 9.03173 19.6004 8.64121L15.3577 4.39857Z\" fill=\"currentColor\"/><path d=\"M3.33693 12.8839C2.94641 12.4933 2.94641 11.8602 3.33693 11.4696L4.22082 10.5858C4.61134 10.1952 5.24451 10.1952 5.63503 10.5858L13.4132 18.3639C13.8037 18.7545 13.8037 19.3876 13.4132 19.7781L12.5293 20.662C12.1388 21.0525 11.5056 21.0525 11.1151 20.662L3.33693 12.8839Z\" fill=\"currentColor\"/><path d=\"M10.5848 5.63601C10.1943 5.24548 10.1943 4.61232 10.5848 4.22179L11.4687 3.33791C11.8592 2.94739 12.4924 2.94739 12.8829 3.33791L20.661 11.1161C21.0516 11.5066 21.0516 12.1398 20.661 12.5303L19.7772 13.4142C19.3866 13.8047 18.7535 13.8047 18.363 13.4142L10.5848 5.63601Z\" fill=\"currentColor\"/><path d=\"M8.81701 12.3535L12.3525 8.81799L15.181 11.6464L11.6454 15.1819L8.81701 12.3535Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconDumbell;\n"
  ],
  "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,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,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAs6C,EAAt6C,IAAqB,EAAO,UAAU,6BAA6B,OAAO,gDAA+C,gBAAC,OAAD,CAAM,EAAE,kRAAkR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kRAAkR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kRAAkR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iRAAiR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mFAAmF,KAAK,eAAc,CAAI,EAC96C,EAEc",
  "debugId": "BE2EC70BC3BE475B64756E2164756E21",
  "names": []
}