{
  "version": 3,
  "sources": ["src/IconPasswordStars/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 IconPasswordStars: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconPasswordStars\"><Path d=\"M22.5 17.0002C22.7761 17.0002 23 17.2241 23 17.5002C22.9999 17.7763 22.7761 18.0002 22.5 18.0002H1.5C1.22394 18.0002 1.00014 17.7763 1 17.5002C1 17.2241 1.22386 17.0002 1.5 17.0002H22.5Z\" fill=\"currentColor\"/><Path d=\"M5.19238 6.88012C5.33051 6.64114 5.63593 6.55947 5.875 6.6975C6.11395 6.83564 6.19564 7.14105 6.05762 7.38012L5.11523 9.01195H7C7.27614 9.01195 7.5 9.23581 7.5 9.51195C7.49972 9.78785 7.27597 10.012 7 10.012H5.11621L6.05762 11.6428C6.19553 11.8819 6.11408 12.1884 5.875 12.3264C5.63594 12.4643 5.33047 12.3818 5.19238 12.1428L4.25 10.511L3.30762 12.1438C3.16938 12.3823 2.86389 12.4642 2.625 12.3264C2.38598 12.1884 2.30461 11.8829 2.44238 11.6438L3.38477 10.012H1.5C1.22403 10.012 1.00028 9.78785 1 9.51195C1 9.23581 1.22386 9.01195 1.5 9.01195H3.38477L2.44238 7.38012C2.30437 7.14106 2.38607 6.83565 2.625 6.6975C2.86409 6.55946 3.1695 6.6411 3.30762 6.88012L4.25 8.51195L5.19238 6.88012Z\" fill=\"currentColor\"/><Path d=\"M12.9424 6.88012C13.0805 6.64114 13.3859 6.55947 13.625 6.6975C13.8639 6.83564 13.9456 7.14105 13.8076 7.38012L12.8652 9.01195H14.75C15.0261 9.01195 15.25 9.23581 15.25 9.51195C15.2497 9.78785 15.026 10.012 14.75 10.012H12.8662L13.8076 11.6428C13.9455 11.8819 13.8641 12.1884 13.625 12.3264C13.3859 12.4643 13.0805 12.3818 12.9424 12.1428L12 10.511L11.0576 12.1438C10.9194 12.3823 10.6139 12.4642 10.375 12.3264C10.136 12.1884 10.0546 11.8829 10.1924 11.6438L11.1348 10.012H9.25C8.97403 10.012 8.75028 9.78785 8.75 9.51195C8.75 9.23581 8.97386 9.01195 9.25 9.01195H11.1348L10.1924 7.38012C10.0544 7.14106 10.1361 6.83565 10.375 6.6975C10.6141 6.55946 10.9195 6.6411 11.0576 6.88012L12 8.51195L12.9424 6.88012Z\" fill=\"currentColor\"/><Path d=\"M20.6924 6.88012C20.8305 6.64114 21.1359 6.55947 21.375 6.6975C21.614 6.83564 21.6956 7.14105 21.5576 7.38012L20.6152 9.01195H22.5C22.7761 9.01195 23 9.23581 23 9.51195C22.9997 9.78785 22.776 10.012 22.5 10.012H20.6162L21.5576 11.6428C21.6955 11.8819 21.6141 12.1884 21.375 12.3264C21.1359 12.4643 20.8305 12.3818 20.6924 12.1428L19.75 10.511L18.8076 12.1438C18.6694 12.3823 18.3639 12.4642 18.125 12.3264C17.886 12.1884 17.8046 11.8829 17.9424 11.6438L18.8848 10.012H17C16.724 10.012 16.5003 9.78785 16.5 9.51195C16.5 9.23581 16.7239 9.01195 17 9.01195H18.8848L17.9424 7.38012C17.8044 7.14106 17.8861 6.83565 18.125 6.6975C18.3641 6.55946 18.6695 6.6411 18.8076 6.88012L19.75 8.51195L20.6924 6.88012Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPasswordStars;\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,EAAsE,EAAM,KAAK,CAAC,IACtF,gBAAs8E,EAAt8E,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,6LAA6L,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qrBAAqrB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wsBAAwsB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gsBAAgsB,KAAK,eAAc,CAAI,CAC98E,EAEc",
  "debugId": "809E9B1EB15ACDFE64756E2164756E21",
  "names": []
}