{
  "version": 3,
  "sources": ["src/IconFastForward15s/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 IconFastForward15s: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconFastForward15s\"><Path d=\"M8.99219 15.288C8.99219 15.6103 9.16943 15.8036 9.4541 15.8036C9.74414 15.8036 9.91602 15.6157 9.91602 15.288V8.99309C9.91602 8.62786 9.67432 8.37542 9.33057 8.37542C9.12109 8.37542 8.93311 8.45598 8.59473 8.70842L7.50977 9.51409C7.29492 9.66985 7.19287 9.81487 7.19287 9.97063C7.19287 10.1747 7.354 10.3412 7.55273 10.3412C7.6709 10.3412 7.78369 10.2983 7.93945 10.1855L8.94922 9.44964H8.99219V15.288Z\" fill=\"currentColor\"/><Path d=\"M11.7798 14.289C11.7798 15.0409 12.666 15.9057 14.084 15.9057C15.5825 15.9057 16.6514 14.853 16.6514 13.3705C16.6514 11.9794 15.6899 11.0019 14.3257 11.0019C13.708 11.0019 13.0796 11.2597 12.8379 11.6196H12.7842L12.9883 9.22942H15.8833C16.2002 9.22942 16.3774 9.0844 16.3774 8.82659C16.3774 8.56341 16.1948 8.40764 15.8833 8.40764H12.8701C12.4082 8.40764 12.1772 8.59563 12.145 8.99309L11.9087 12.0009C11.8818 12.4145 12.0376 12.6562 12.3438 12.6562C12.5156 12.6562 12.623 12.5917 13.0151 12.2265C13.3267 11.9472 13.6973 11.8075 14.1162 11.8075C15.0454 11.8075 15.7061 12.4736 15.7061 13.4189C15.7061 14.4072 15.0239 15.0947 14.0464 15.0947C13.4019 15.0947 12.9077 14.7831 12.6123 14.2084C12.4727 13.9345 12.3545 13.8378 12.1719 13.8378C11.9355 13.8378 11.7798 14.0204 11.7798 14.289Z\" fill=\"currentColor\"/><Path d=\"M11 3.05486V4.44944C11 4.85203 11.4515 5.08954 11.7833 4.86146L14.4007 3.06198C14.6897 2.8633 14.6897 2.43661 14.4007 2.23793L11.7833 0.438448C11.4515 0.210369 11 0.447879 11 0.850469V2.0493C5.94668 2.55103 2 6.81458 2 11.9999C2 17.5228 6.47715 21.9999 12 21.9999C17.5228 21.9999 22 17.5228 22 11.9999C22 9.4185 21.0213 7.06484 19.4157 5.29106C19.2304 5.08634 18.9128 5.08715 18.7175 5.28241C18.5223 5.47768 18.5234 5.79336 18.7076 5.9991C20.1336 7.59183 21 9.69429 21 11.9999C21 16.9705 16.9706 20.9999 12 20.9999C7.02944 20.9999 3 16.9705 3 11.9999C3 7.36737 6.50005 3.5523 11 3.05486Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFastForward15s;\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,EAAuE,EAAM,KAAK,CAAC,IACvF,gBAAs6D,EAAt6D,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,qZAAqZ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mxBAAmxB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8kBAA8kB,KAAK,eAAc,CAAI,CAC96D,EAEc",
  "debugId": "01A1E29D3FB8D5F664756E2164756E21",
  "names": []
}