{
  "version": 3,
  "sources": ["src/IconAura/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 IconAura: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-1-stroke-1.5-IconAura\"><Path d=\"M11.9988 15C15.1143 15.0001 17.4193 17.3082 17.9031 20.1279C18.0899 21.2175 17.1729 21.9999 16.2488 22H7.74882C6.82466 22 5.90768 21.2176 6.09453 20.1279C6.57835 17.3082 8.88326 15 11.9988 15Z\" fill=\"currentColor\"/><Path d=\"M5.34746 13.4717C5.706 13.2648 6.16466 13.3878 6.37187 13.7461C6.57888 14.1048 6.45603 14.5634 6.09746 14.7705L4.7996 15.5205C4.44091 15.7276 3.98134 15.6047 3.77421 15.2461C3.56734 14.8874 3.69098 14.4287 4.0496 14.2217L5.34746 13.4717Z\" fill=\"currentColor\"/><Path d=\"M17.6219 13.7461C17.8291 13.3878 18.2877 13.2647 18.6463 13.4717L19.9451 14.2217C20.3034 14.4288 20.4263 14.8876 20.2195 15.2461C20.0125 15.6047 19.5538 15.7273 19.1951 15.5205L17.8963 14.7705C17.5376 14.5634 17.4148 14.1048 17.6219 13.7461Z\" fill=\"currentColor\"/><Path d=\"M11.9988 7C13.9317 7.00011 15.4988 8.56707 15.4988 10.5C15.4988 12.4329 13.9317 13.9999 11.9988 14C10.0658 14 8.49882 12.433 8.49882 10.5C8.49882 8.567 10.0658 7 11.9988 7Z\" fill=\"currentColor\"/><Path d=\"M2.64042 8.85059C2.71236 8.44281 3.10081 8.17048 3.50859 8.24219L4.97343 8.5C5.38119 8.57201 5.65365 8.96134 5.58183 9.36914C5.50992 9.777 5.12054 10.0493 4.71269 9.97754L3.24882 9.71973C2.8409 9.6478 2.5685 9.25851 2.64042 8.85059Z\" fill=\"currentColor\"/><Path d=\"M20.4852 8.24219C20.8929 8.17054 21.2814 8.44284 21.3533 8.85059C21.4252 9.25843 21.1527 9.64771 20.7449 9.71973L19.281 9.97754C18.8731 10.0495 18.4839 9.77704 18.4119 9.36914C18.3401 8.96128 18.6124 8.57193 19.0203 8.5L20.4852 8.24219Z\" fill=\"currentColor\"/><Path d=\"M5.8748 3.20508C6.1921 2.93935 6.66535 2.98073 6.93144 3.29785L7.92363 4.48047C8.18954 4.79773 8.14794 5.27093 7.83085 5.53711C7.51358 5.80333 7.04048 5.76155 6.77421 5.44434L5.78203 4.26172C5.51597 3.94441 5.55756 3.47127 5.8748 3.20508Z\" fill=\"currentColor\"/><Path d=\"M17.0633 3.29785C17.3296 2.9809 17.8027 2.93894 18.1199 3.20508C18.437 3.47129 18.4777 3.94448 18.2117 4.26172L17.2195 5.44434C16.9533 5.7616 16.4802 5.80325 16.1629 5.53711C15.8456 5.27085 15.8049 4.79776 16.0711 4.48047L17.0633 3.29785Z\" fill=\"currentColor\"/><Path d=\"M11.9988 1C12.4129 1.00011 12.7488 1.33585 12.7488 1.75V3.25C12.7488 3.66415 12.4129 3.99989 11.9988 4C11.5846 3.99997 11.2488 3.6642 11.2488 3.25V1.75C11.2488 1.3358 11.5846 1.00003 11.9988 1Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAura;\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,EAA6D,EAAM,KAAK,CAAC,IAC7E,gBAA4yE,EAA5yE,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,EAAE,mMAAmM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gPAAgP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+KAA+K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2OAA2O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+OAA+O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iPAAiP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iPAAiP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oMAAoM,KAAK,eAAc,CAAI,CACpzE,EAEc",
  "debugId": "C1C4B015D9FFFDAC64756E2164756E21",
  "names": []
}