{
  "version": 3,
  "sources": ["src/IconRewind30s/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 IconRewind30s: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconRewind30s\"><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=\"M6.42969 14.2461C6.42969 15.0679 7.44482 15.9058 8.83057 15.9058C10.3237 15.9058 11.3657 15.0249 11.3657 13.7681C11.3657 12.8442 10.6729 12.0493 9.76514 11.9473V11.8936C10.5117 11.7646 11.1187 10.9912 11.1187 10.1802C11.1187 9.06299 10.1626 8.2627 8.81982 8.2627C7.49854 8.2627 6.60156 9.06836 6.60156 9.90088C6.60156 10.1694 6.7627 10.3467 7.00977 10.3467C7.21924 10.3467 7.35352 10.2339 7.46094 9.93848C7.67578 9.38525 8.15918 9.06836 8.79834 9.06836C9.62012 9.06836 10.1733 9.5625 10.1733 10.2983C10.1733 11.0342 9.604 11.5659 8.81982 11.5659H8.18604C7.92822 11.5659 7.75635 11.7324 7.75635 11.9688C7.75635 12.1997 7.93896 12.377 8.18604 12.377H8.85742C9.79199 12.377 10.4204 12.9302 10.4204 13.752C10.4204 14.5737 9.80811 15.1001 8.84668 15.1001C8.11621 15.1001 7.55762 14.7778 7.27832 14.2031C7.13867 13.9292 7.02051 13.8325 6.83252 13.8325C6.59619 13.8325 6.42969 14.0044 6.42969 14.2461Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.4185 12.2266C12.4185 14.4502 13.3691 15.9058 15.0234 15.9058C16.6831 15.9058 17.6338 14.4448 17.6338 12.2266V11.958C17.6338 9.73438 16.6885 8.2627 15.0288 8.2627C13.3691 8.2627 12.4185 9.73438 12.4185 11.958V12.2266ZM13.3584 11.9634C13.3584 10.1748 13.9976 9.0791 15.0234 9.0791C16.0547 9.0791 16.6992 10.1748 16.6992 11.9634V12.2158C16.6992 14.0044 16.0601 15.0947 15.0288 15.0947C13.9976 15.0947 13.3584 14.0044 13.3584 12.2158V11.9634Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRewind30s;\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,gBAAqkE,EAArkE,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,sjBAAsjB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,i4BAAi4B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6bAA6b,KAAK,eAAc,CAAI,CAC7kE,EAEc",
  "debugId": "0E14BE7AD9903C1664756E2164756E21",
  "names": []
}