{
  "version": 3,
  "sources": ["src/IconMagicWand3/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 IconMagicWand3: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconMagicWand3\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M9.7883 10.5597C9.23826 10.9002 9 11.3053 9 11.6667C9 12.028 9.23826 12.4331 9.7883 12.7736C10.3307 13.1093 11.1113 13.3333 12 13.3333C12.8887 13.3333 13.6693 13.1093 14.2117 12.7736C14.7617 12.4331 15 12.028 15 11.6667C15 11.3053 14.7617 10.9002 14.2117 10.5597C13.6693 10.224 12.8887 10 12 10C11.1113 10 10.3307 10.224 9.7883 10.5597ZM15 13.4452C14.9159 13.5084 14.8283 13.568 14.7381 13.6239C14.0137 14.0723 13.0443 14.3333 12 14.3333C10.9557 14.3333 9.98634 14.0723 9.26195 13.6239C9.17166 13.568 9.0841 13.5084 9 13.4452V18.1667C9 18.528 9.23826 18.9331 9.7883 19.2736C10.3307 19.6093 11.1113 19.8333 12 19.8333C12.8887 19.8333 13.6693 19.6093 14.2117 19.2736C14.7617 18.9331 15 18.528 15 18.1667V13.4452ZM16 11.6667C16 10.8314 15.4548 10.1531 14.7381 9.70947C14.0137 9.26104 13.0443 9 12 9C10.9557 9 9.98634 9.26104 9.26195 9.70947C8.54524 10.1531 8 10.8314 8 11.6667V22.5C8 22.7761 8.22386 23 8.5 23C9.14433 23 14.8557 23 15.5 23C15.7761 23 16 22.7761 16 22.5V11.6667Z\" fill=\"currentColor\"/><Path d=\"M12 1.5C11.424 1.5 11.1628 2.5564 10.9607 2.96066C10.5564 3.16278 9.5 3.42398 9.5 4C9.5 4.57602 10.5564 4.83722 10.9607 5.03935C11.1628 5.4436 11.424 6.5 12 6.5C12.576 6.5 12.8372 5.4436 13.0393 5.03935C13.4436 4.83722 14.5 4.57602 14.5 4C14.5 3.42398 13.4436 3.16278 13.0393 2.96065C12.8372 2.5564 12.576 1.5 12 1.5Z\" fill=\"currentColor\"/><Path d=\"M5 4.5C4.42398 4.5 4.16278 5.5564 3.96066 5.96066C3.5564 6.16278 2.5 6.42398 2.5 7C2.5 7.57602 3.5564 7.83722 3.96066 8.03934C4.16278 8.4436 4.42398 9.5 5 9.5C5.57602 9.5 5.83722 8.4436 6.03935 8.03934C6.4436 7.83722 7.5 7.57602 7.5 7C7.5 6.42398 6.4436 6.16278 6.03934 5.96066C5.83722 5.5564 5.57602 4.5 5 4.5Z\" fill=\"currentColor\"/><Path d=\"M19 4.5C18.424 4.5 18.1628 5.5564 17.9607 5.96066C17.5564 6.16278 16.5 6.42398 16.5 7C16.5 7.57602 17.5564 7.83722 17.9607 8.03935C18.1628 8.4436 18.424 9.5 19 9.5C19.576 9.5 19.8372 8.4436 20.0393 8.03934C20.4436 7.83722 21.5 7.57602 21.5 7C21.5 6.42398 20.4436 6.16278 20.0393 5.96066C19.8372 5.5564 19.576 4.5 19 4.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMagicWand3;\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,EAAmE,EAAM,KAAK,CAAC,IACnF,gBAA8nE,EAA9nE,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,k9BAAk9B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gUAAgU,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0TAA0T,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mUAAmU,KAAK,eAAc,CAAI,CACtoE,EAEc",
  "debugId": "3FF3456FEEDDC81D64756E2164756E21",
  "names": []
}