{
  "version": 3,
  "sources": ["src/IconWreath/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 IconWreath: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconWreath\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.38853 2.17258C7.23274 1.9928 6.97186 1.94768 6.76474 2.06468C5.29199 2.89665 4.32729 3.88686 4.083 5.08297C3.95927 5.68882 4.02929 6.30151 4.26439 6.91688C3.84248 6.75253 3.37769 6.61805 2.87401 6.51096C2.62505 6.45802 2.37606 6.60055 2.29564 6.84204C1.79076 8.35802 1.79822 9.69276 2.47499 10.7556C2.64183 11.0177 2.84443 11.2552 3.08052 11.4698C2.68502 11.5265 2.27319 11.625 1.84685 11.7623C1.60148 11.8413 1.45638 12.0939 1.51175 12.3457C1.87456 13.9952 2.54558 15.2196 3.61249 15.8764C3.95023 16.0842 4.31507 16.2276 4.70434 16.3112C4.46661 16.4889 4.23429 16.6952 4.00959 16.9318C3.82635 17.1248 3.82635 17.4274 4.00959 17.6204C4.99797 18.6613 6.08361 19.1852 7.21317 19.1943C8.26102 19.2027 9.26942 18.7672 10.194 18.036C10.43 18.4353 10.5429 18.8591 10.5135 19.2577C10.4691 19.8592 10.0902 20.5288 9.03229 21.0518C8.78475 21.1742 8.68329 21.4741 8.80568 21.7216C8.92807 21.9692 9.22795 22.0706 9.47549 21.9482C10.7709 21.3078 11.4343 20.3664 11.5108 19.3313C11.6582 17.3341 9.74469 15.7232 7.9076 15.4591C7.64284 14.26 7.21482 13.286 6.58979 12.5922C6.60953 12.5601 6.6259 12.5253 6.63827 12.4881C7.13868 10.9855 7.13578 9.66099 6.47668 8.60274C7.70676 7.82556 8.50881 6.91657 8.72845 5.84111C8.97489 4.63445 8.45275 3.40066 7.38853 2.17258Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.2355 2.06468C17.0283 1.94768 16.7675 1.9928 16.6117 2.17258C15.5474 3.40066 15.0253 4.63445 15.2718 5.84111C15.4914 6.91657 16.2935 7.82557 17.5235 8.60276C16.8645 9.661 16.8615 10.9855 17.362 12.4881C17.3743 12.5253 17.3907 12.5601 17.4104 12.5922C16.7904 13.2804 16.3643 14.2442 16.099 15.43C14.2069 15.7472 12.3166 17.5885 12.536 19.6159C12.6482 20.6526 13.353 21.5275 14.6815 21.974C14.9432 22.0619 15.2268 21.9211 15.3147 21.6593C15.4027 21.3976 15.2618 21.1141 15.0001 21.0261C13.9726 20.6807 13.5931 20.0897 13.5302 19.5083C13.4811 19.0548 13.6171 18.5378 13.9131 18.0492C14.8163 18.7718 15.8052 19.2026 16.8341 19.1943C17.9519 19.1852 19.0239 18.6587 19.9941 17.6169C20.1729 17.4249 20.1729 17.1273 19.9941 16.9354C19.7719 16.6968 19.5441 16.4881 19.3122 16.3076C19.6953 16.2236 20.0547 16.0813 20.3877 15.8764C21.4546 15.2196 22.1256 13.9952 22.4884 12.3457C22.5438 12.0939 22.3987 11.8413 22.1533 11.7623C21.727 11.6251 21.3152 11.5265 20.9197 11.4698C21.1558 11.2553 21.3584 11.0177 21.5252 10.7556C22.202 9.69276 22.2095 8.35802 21.7046 6.84204C21.6242 6.60055 21.3752 6.45802 21.1262 6.51096C20.6225 6.61805 20.1577 6.75254 19.7358 6.91689C19.9709 6.30152 20.0409 5.68883 19.9172 5.08297C19.6729 3.88686 18.7082 2.89665 17.2355 2.06468Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWreath;\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,EAA+D,EAAM,KAAK,CAAC,IAC/E,gBAAsqF,EAAtqF,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uuCAAuuC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wuCAAwuC,KAAK,eAAc,CAAI,CAC9qF,EAEc",
  "debugId": "4DF79D6475D365F164756E2164756E21",
  "names": []
}