{
  "version": 3,
  "sources": ["src/IconBee/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 IconBee: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconBee\"><Path d=\"M15.9358 1.74816C16.0728 1.5084 15.9895 1.20297 15.7498 1.06596C15.51 0.928959 15.2046 1.01226 15.0676 1.25202L13.1093 4.67897C12.7612 4.56293 12.3888 4.50009 12.0017 4.50009C11.6146 4.50009 11.2421 4.56294 10.894 4.67899L8.93581 1.25202C8.79881 1.01226 8.49338 0.928959 8.25362 1.06596C8.01386 1.20296 7.93056 1.50839 8.06756 1.74815L9.9994 5.12902C9.09395 5.76167 8.50168 6.81171 8.50168 8.00009C8.50168 9.93308 10.0687 11.5001 12.0017 11.5001C13.9347 11.5001 15.5017 9.93308 15.5017 8.00009C15.5017 6.81168 14.9094 5.76162 14.0039 5.12898L15.9358 1.74816Z\" fill=\"currentColor\"/><Path d=\"M15.9698 10.1241C15.5313 10.9417 14.8475 11.608 14.0168 12.0247C14.2024 15.6484 16.1164 18.4156 20.5022 18.9182C21.3253 19.0126 22.0099 18.327 21.9534 17.5005C21.666 13.3003 20.0537 10.7043 15.9698 10.1241Z\" fill=\"currentColor\"/><Path d=\"M12.0017 12.5C11.6546 12.5 11.3166 12.4607 10.992 12.3863C10.9226 14.0907 10.4797 15.7342 9.47167 17.0851C9.15418 17.5106 8.79291 17.8909 8.39006 18.2252C8.61336 18.8387 8.89317 19.3941 9.22278 19.8675C9.81385 20.7164 10.5954 21.3368 11.5017 21.4723V22.5371C11.5017 22.8132 11.7255 23.0371 12.0017 23.0371C12.2778 23.0371 12.5017 22.8132 12.5017 22.5371V21.4213C13.3007 21.2178 13.9923 20.6363 14.5276 19.8675C14.8869 19.3514 15.1871 18.7379 15.4193 18.0579C15.0936 17.7656 14.7972 17.4412 14.5315 17.0851C13.5234 15.7342 13.0806 14.0907 13.0111 12.3863C12.6866 12.4607 12.3488 12.5 12.0017 12.5Z\" fill=\"currentColor\"/><Path d=\"M9.98662 12.0247C9.16134 11.6107 8.48103 10.9504 8.04217 10.1401C4.11869 10.7676 2.38418 13.4673 2.05916 17.5015C1.99263 18.3272 2.67809 19.0126 3.50113 18.9182C7.887 18.4156 9.80098 15.6484 9.98662 12.0247Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBee;\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,EAA4D,EAAM,KAAK,CAAC,IAC5E,gBAA6uD,EAA7uD,IAAqB,EAAO,OAAO,0CAAyC,gBAAC,EAAD,CAAM,EAAE,ijBAAijB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,ulBAAulB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,CAAI,CACrvD,EAEc",
  "debugId": "9D17FB09140C5D8064756E2164756E21",
  "names": []
}