{
  "version": 3,
  "sources": ["src/IconFastForward10s/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 IconFastForward10s: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconFastForward10s\"><Path d=\"M9.07812 15.288C9.07812 15.6103 9.25537 15.8036 9.54004 15.8036C9.83008 15.8036 10.002 15.6157 10.002 15.288V8.99309C10.002 8.62786 9.76025 8.37542 9.4165 8.37542C9.20703 8.37542 9.01904 8.45598 8.68066 8.70842L7.5957 9.51409C7.38086 9.66985 7.27881 9.81487 7.27881 9.97063C7.27881 10.1747 7.43994 10.3412 7.63867 10.3412C7.75684 10.3412 7.86963 10.2983 8.02539 10.1855L9.03516 9.44964H9.07812V15.288Z\" fill=\"currentColor\"/><Path d=\"M11.5542 12.2265C11.5542 14.4501 12.5049 15.9057 14.1592 15.9057C15.8188 15.9057 16.7695 14.4448 16.7695 12.2265V11.9579C16.7695 9.7343 15.8242 8.26262 14.1646 8.26262C12.5049 8.26262 11.5542 9.7343 11.5542 11.9579V12.2265ZM12.4941 11.9633C12.4941 10.1747 13.1333 9.07903 14.1592 9.07903C15.1904 9.07903 15.835 10.1747 15.835 11.9633V12.2157C15.835 14.0043 15.1958 15.0947 14.1646 15.0947C13.1333 15.0947 12.4941 14.0043 12.4941 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 IconFastForward10s;\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,gBAAklD,EAAllD,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,oZAAoZ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gcAAgc,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8kBAA8kB,KAAK,eAAc,CAAI,CAC1lD,EAEc",
  "debugId": "36488DDFDA3A904664756E2164756E21",
  "names": []
}