{
  "version": 3,
  "sources": ["src/IconFastForward30s/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 IconFastForward30s: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconFastForward30s\"><Path d=\"M6.43018 14.246C6.43018 15.0678 7.44531 15.9057 8.83105 15.9057C10.3242 15.9057 11.3662 15.0248 11.3662 13.768C11.3662 12.8442 10.6733 12.0492 9.76562 11.9472V11.8935C10.5122 11.7646 11.1191 10.9911 11.1191 10.1801C11.1191 9.06292 10.1631 8.26262 8.82031 8.26262C7.49902 8.26262 6.60205 9.06829 6.60205 9.90081C6.60205 10.1694 6.76318 10.3466 7.01025 10.3466C7.21973 10.3466 7.354 10.2338 7.46143 9.93841C7.67627 9.38518 8.15967 9.06829 8.79883 9.06829C9.62061 9.06829 10.1738 9.56243 10.1738 10.2983C10.1738 11.0341 9.60449 11.5658 8.82031 11.5658H8.18652C7.92871 11.5658 7.75684 11.7324 7.75684 11.9687C7.75684 12.1996 7.93945 12.3769 8.18652 12.3769H8.85791C9.79248 12.3769 10.4209 12.9301 10.4209 13.7519C10.4209 14.5737 9.80859 15.1 8.84717 15.1C8.1167 15.1 7.55811 14.7778 7.27881 14.2031C7.13916 13.9291 7.021 13.8324 6.83301 13.8324C6.59668 13.8324 6.43018 14.0043 6.43018 14.246Z\" fill=\"currentColor\"/><Path d=\"M12.4189 12.2265C12.4189 14.4501 13.3696 15.9057 15.0239 15.9057C16.6836 15.9057 17.6343 14.4448 17.6343 12.2265V11.9579C17.6343 9.7343 16.689 8.26262 15.0293 8.26262C13.3696 8.26262 12.4189 9.7343 12.4189 11.9579V12.2265ZM13.3589 11.9633C13.3589 10.1747 13.998 9.07903 15.0239 9.07903C16.0552 9.07903 16.6997 10.1747 16.6997 11.9633V12.2157C16.6997 14.0043 16.0605 15.0947 15.0293 15.0947C13.998 15.0947 13.3589 14.0043 13.3589 12.2157V11.9633Z\" 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 IconFastForward30s;\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,gBAAyjE,EAAzjE,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,23BAA23B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gcAAgc,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8kBAA8kB,KAAK,eAAc,CAAI,CACjkE,EAEc",
  "debugId": "0117B4E1964E095964756E2164756E21",
  "names": []
}