{
  "version": 3,
  "sources": ["src/IconRewind15s/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 IconRewind15s: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconRewind15s\"><Path d=\"M13.0002 3.05496V4.44944C13.0002 4.85203 12.5487 5.08954 12.217 4.86146L9.59955 3.06198C9.31057 2.8633 9.31057 2.43661 9.59955 2.23794L12.217 0.438448C12.5487 0.210369 13.0002 0.447879 13.0002 0.850469V2.0494C18.0535 2.55124 22 6.81473 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 9.39344 2.99792 7.01882 4.63167 5.23917C4.81842 5.03575 5.13471 5.02223 5.33813 5.20897C5.54155 5.39572 5.55507 5.71201 5.36833 5.91544C3.89728 7.51785 3 9.65357 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.36753 17.5001 3.55251 13.0002 3.05496Z\" fill=\"currentColor\"/><Path d=\"M8.99072 15.2876C8.99072 15.6099 9.16797 15.8032 9.45264 15.8032C9.74268 15.8032 9.91455 15.6152 9.91455 15.2876V8.99268C9.91455 8.62744 9.67285 8.375 9.3291 8.375C9.11963 8.375 8.93164 8.45557 8.59326 8.70801L7.5083 9.51367C7.29346 9.66943 7.19141 9.81445 7.19141 9.97021C7.19141 10.1743 7.35254 10.3408 7.55127 10.3408C7.66943 10.3408 7.78223 10.2979 7.93799 10.1851L8.94775 9.44922H8.99072V15.2876Z\" fill=\"currentColor\"/><Path d=\"M11.7783 14.2886C11.7783 15.0405 12.6646 15.9053 14.0825 15.9053C15.5811 15.9053 16.6499 14.8525 16.6499 13.3701C16.6499 11.979 15.6885 11.0015 14.3242 11.0015C13.7065 11.0015 13.0781 11.2593 12.8364 11.6191H12.7827L12.9868 9.229H15.8818C16.1987 9.229 16.376 9.08398 16.376 8.82617C16.376 8.56299 16.1934 8.40723 15.8818 8.40723H12.8687C12.4067 8.40723 12.1758 8.59521 12.1436 8.99268L11.9072 12.0005C11.8804 12.4141 12.0361 12.6558 12.3423 12.6558C12.5142 12.6558 12.6216 12.5913 13.0137 12.2261C13.3252 11.9468 13.6958 11.8071 14.1147 11.8071C15.0439 11.8071 15.7046 12.4731 15.7046 13.4185C15.7046 14.4067 15.0225 15.0942 14.0449 15.0942C13.4004 15.0942 12.9062 14.7827 12.6108 14.208C12.4712 13.9341 12.353 13.8374 12.1704 13.8374C11.9341 13.8374 11.7783 14.02 11.7783 14.2886Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRewind15s;\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,EAAkE,EAAM,KAAK,CAAC,IAClF,gBAAq4D,EAAr4D,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,sjBAAsjB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oZAAoZ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gxBAAgxB,KAAK,eAAc,CAAI,CAC74D,EAEc",
  "debugId": "2F43654601870ACF64756E2164756E21",
  "names": []
}