{
  "version": 3,
  "sources": ["src/IconIcebowl/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconIcebowl: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconIcebowl\"><Path d=\"M14.227 8.78013C14.4948 8.84709 14.6577 9.11848 14.5908 9.38634L14.4093 10.1134C14.3423 10.3814 14.0708 10.5443 13.8029 10.4773L12.773 10.2199C12.5052 10.1529 12.3423 9.88152 12.4092 9.61366L12.5907 8.8866C12.6577 8.61864 12.9292 8.45568 13.1971 8.52267L14.227 8.78013Z\" fill=\"currentColor\"/><Path d=\"M7.45108 8.09849C7.60429 8.32831 7.54214 8.63882 7.31228 8.79196L6.68747 9.20822C6.4577 9.36129 6.14736 9.29917 5.99422 9.06946L5.54892 8.40151C5.39571 8.17169 5.45786 7.86118 5.68772 7.70804L6.31253 7.29178C6.5423 7.13871 6.85264 7.20083 7.00578 7.43054L7.45108 8.09849Z\" fill=\"currentColor\"/><Path d=\"M17.5695 7.49422C17.7992 7.64736 17.8613 7.95771 17.7082 8.18747L17.292 8.81228C17.1388 9.04214 16.8283 9.10429 16.5985 8.95108L15.9305 8.50578C15.7008 8.35264 15.6387 8.04229 15.7918 7.81253L16.208 7.18772C16.3612 6.95786 16.6717 6.89571 16.9015 7.04892L17.5695 7.49422Z\" fill=\"currentColor\"/><Path d=\"M11.6677 7.3349C11.7913 7.58192 11.6912 7.88241 11.4442 8.00595L10.3386 8.55873C10.0917 8.68218 9.79146 8.58219 9.66788 8.33535L9.33234 7.6651C9.20868 7.41808 9.30876 7.11759 9.55584 6.99406L10.6614 6.44127C10.9083 6.31782 11.2085 6.41781 11.3321 6.66465L11.6677 7.3349Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.5C14.9504 3.5 17.6451 4.01165 19.6211 4.8584C20.6082 5.28143 21.439 5.7984 22.0303 6.39746C22.6237 6.99871 23 7.7096 23 8.5V9.5459C22.9998 15.5978 18.0729 20.5 12 20.5C5.92706 20.5 1.00024 15.5978 1 9.5459V8.5C1 7.7096 1.37635 6.99871 1.96973 6.39746C2.56098 5.7984 3.39184 5.28143 4.37891 4.8584C6.35488 4.01165 9.04963 3.5 12 3.5ZM12 4.5C9.1517 4.5 6.59669 4.99557 4.77246 5.77734C3.85945 6.16863 3.15206 6.62196 2.68066 7.09961C2.21151 7.57505 2 8.04782 2 8.5C2 8.95218 2.21151 9.42495 2.68066 9.90039C3.15206 10.378 3.85945 10.8314 4.77246 11.2227C6.59669 12.0044 9.1517 12.5 12 12.5C14.8483 12.5 17.4033 12.0044 19.2275 11.2227C20.1405 10.8314 20.8479 10.378 21.3193 9.90039C21.7885 9.42495 22 8.95218 22 8.5C22 8.04782 21.7885 7.57505 21.3193 7.09961C20.8479 6.62196 20.1405 6.16863 19.2275 5.77734C17.4033 4.99557 14.8483 4.5 12 4.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconIcebowl;\n",
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\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    >\n      {masked ? (\n        <>\n          <Mask\n            id={uniqueMaskId}\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 color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GDrFN,eAAS,yBAEF,IAAM,EAAgE,EAAM,KAAK,CAAC,IAChF,gBAA+pE,EAA/pE,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,gRAAgR,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kRAAkR,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kRAAkR,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iRAAiR,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i1BAAi1B,KAAK,eAAc,CAAI,CACvqE,EAEc",
  "debugId": "FBA981A758404DE064756E2164756E21",
  "names": []
}