{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconStandingGlobe/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 IconStandingGlobe: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} ariaLabel=\"standing-globe, travel, language\" maskId=\"round-filled-radius-1-stroke-1.5-IconStandingGlobe\"><path d=\"M7.38477 2.71387L6.87109 3.26074C5.40017 4.8267 4.50012 6.93264 4.5 9.25C4.50026 14.0823 8.41767 18 13.25 18C15.8032 18 18.1006 16.9076 19.7012 15.1621L20.208 14.6094L21.3135 15.623L20.8066 16.1758C19.0389 18.1036 16.5402 19.3513 13.75 19.4854V20.5H17V22H9V20.5H12.25V19.4492C7.05862 18.9465 3.00025 14.5732 3 9.25C3.00012 6.53594 4.05632 4.06646 5.77832 2.2334L6.29199 1.68555L7.38477 2.71387Z\" fill=\"currentColor\"/><path d=\"M13.25 2C17.2541 2 20.5 5.24594 20.5 9.25C20.5 13.2541 17.2541 16.5 13.25 16.5C9.24594 16.5 6 13.2541 6 9.25C6 5.24594 9.24594 2 13.25 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconStandingGlobe;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAA0tB,EAA1tB,IAAqB,EAAO,UAAU,mCAAmC,OAAO,sDAAqD,gBAAC,OAAD,CAAM,EAAE,6YAA6Y,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,CAAI,EACluB,EAEc",
  "debugId": "D20AA1323C374C8864756E2164756E21",
  "names": []
}