{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWeight/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 IconWeight: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"weight, scale\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.25 3C20.2165 3 21 3.7835 21 4.75V19.25C21 20.2165 20.2165 21 19.25 21H4.75C3.7835 21 3 20.2165 3 19.25V4.75C3 3.7835 3.7835 3 4.75 3H19.25ZM12 7C9.99896 7 8.14078 7.6122 6.60254 8.65918C6.26052 8.8921 6.20946 9.36621 6.46777 9.68945L8.53125 12.2686C8.79015 12.592 9.26044 12.6383 9.62012 12.4326C10.3217 12.0315 11.134 11.8018 12 11.8018C12.866 11.8018 13.6783 12.0315 14.3799 12.4326C14.7396 12.6383 15.2098 12.592 15.4688 12.2686L17.5322 9.68945C17.7905 9.36621 17.7395 8.8921 17.3975 8.65918C15.8592 7.6122 14.001 7 12 7Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWeight;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAA8oB,EAA9oB,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mhBAAmhB,KAAK,eAAc,CAAI,GAGxoB",
  "debugId": "05B2B54628E5929264756E2164756E21",
  "names": []
}