{
  "version": 3,
  "sources": ["src/IconWreathSimple/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 IconWreathSimple: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconWreathSimple\"><Path d=\"M18.0733 13.6173C19.0681 13.0219 20.3328 13.0944 21.7598 13.6358C21.9826 13.7206 22.1147 13.9506 22.0753 14.1856C21.8157 15.7278 21.2498 16.8875 20.2608 17.4796C19.3805 18.0064 18.2892 18.0093 17.0606 17.628C16.0357 18.5327 14.8699 18.9833 13.7354 19.3165C14.583 19.662 15.4038 20.1429 16.1182 20.9093C16.3062 21.1113 16.2947 21.4281 16.0929 21.6163C15.8909 21.8043 15.574 21.7928 15.3858 21.5909C14.4515 20.5889 13.298 20.1578 12.002 19.793C10.7061 20.1578 9.55256 20.5888 8.61824 21.5909C8.43004 21.7928 8.11321 21.8043 7.91121 21.6163C7.70943 21.4281 7.69785 21.1112 7.88582 20.9093C8.60001 20.1432 9.42038 19.662 10.2677 19.3165C9.13343 18.9833 7.96708 18.5335 6.94246 17.629C5.7143 18.01 4.62334 18.0073 3.74324 17.4805C2.75434 16.8885 2.18834 15.7287 1.92879 14.1866C1.88939 13.9516 2.02153 13.7216 2.24422 13.6368C3.67125 13.0954 4.93597 13.0229 5.93074 13.6182C6.91964 14.2103 7.48563 15.3701 7.74519 16.9122C7.75029 16.9427 7.75154 16.973 7.75105 17.003C8.70221 17.7862 9.79959 18.1559 10.9835 18.4815L12.002 18.755C12.1475 18.7155 12.2921 18.6769 12.4356 18.6388C13.8422 18.2649 15.1462 17.914 16.252 17.004C16.2514 16.9734 16.2537 16.9423 16.2589 16.9112C16.5184 15.3691 17.0845 14.2093 18.0733 13.6173Z\" fill=\"currentColor\"/><Path d=\"M2.77254 7.43563C4.31477 7.29797 5.57007 7.56235 6.39266 8.38484C7.21494 9.20745 7.48051 10.4629 7.34285 12.005C7.32118 12.2457 7.12948 12.4374 6.88875 12.4591C5.34665 12.5967 4.09123 12.3312 3.26863 11.5089C2.44614 10.6863 2.18175 9.43099 2.31941 7.88875C2.34094 7.64775 2.53154 7.45715 2.77254 7.43563Z\" fill=\"currentColor\"/><Path d=\"M17.6065 8.38484C18.4291 7.56225 19.6843 7.29794 21.2266 7.43563C21.4676 7.45715 21.6592 7.64774 21.6807 7.88875C21.8184 9.43102 21.5531 10.6863 20.7305 11.5089C19.9079 12.3313 18.6527 12.5968 17.1104 12.4591C16.8696 12.4375 16.679 12.2458 16.6573 12.005C16.5196 10.4627 16.7841 9.20746 17.6065 8.38484Z\" fill=\"currentColor\"/><Path d=\"M6.43855 2.50692C7.98069 2.76647 9.14044 3.33247 9.7325 4.32137C10.3279 5.31615 10.2554 6.58083 9.71394 8.00789C9.62925 8.23064 9.39917 8.36265 9.16414 8.32332C7.62204 8.06375 6.46223 7.49777 5.87019 6.50887C5.27488 5.51409 5.34731 4.24938 5.88875 2.82234L5.92684 2.74324C6.03088 2.5693 6.23289 2.47244 6.43855 2.50692Z\" fill=\"currentColor\"/><Path d=\"M17.6514 2.50008C17.8542 2.50191 18.0402 2.62736 18.1143 2.82234C18.6557 4.2493 18.7281 5.51412 18.1329 6.50887C17.5409 7.49778 16.381 8.06372 14.8389 8.32332C14.6039 8.36278 14.3739 8.23064 14.2891 8.00789C13.7477 6.5808 13.6752 5.31616 14.2706 4.32137C14.8627 3.33262 16.0225 2.76645 17.5645 2.50692L17.6514 2.50008Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWreathSimple;\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,EAAqE,EAAM,KAAK,CAAC,IACrF,gBAAipF,EAAjpF,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,isCAAisC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mTAAmT,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kTAAkT,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kUAAkU,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iUAAiU,KAAK,eAAc,CAAI,CACzpF,EAEc",
  "debugId": "06B080E90965D85F64756E2164756E21",
  "names": []
}