{
  "version": 3,
  "sources": ["src/IconSendLater/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 IconSendLater: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSendLater\"><Path d=\"M14.5889 21.6611C13.7622 21.8821 12.8938 22 12 22C11.1062 22 10.2378 21.8821 9.41113 21.6611L9.92773 19.7295C10.5875 19.9058 11.2821 20 12 20C12.7179 20 13.4125 19.9058 14.0723 19.7295L14.5889 21.6611Z\" fill=\"currentColor\"/><Path d=\"M5.07031 16C5.7729 17.2142 6.78577 18.2271 8 18.9297L6.99805 20.6611C5.48113 19.7834 4.21662 18.5189 3.33887 17.002L5.07031 16Z\" fill=\"currentColor\"/><Path d=\"M20.6611 17.002C19.7834 18.5189 18.5189 19.7834 17.002 20.6611L16 18.9297C17.2142 18.2271 18.2271 17.2142 18.9297 16L20.6611 17.002Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 5.5C15.5899 5.5 18.5 8.41015 18.5 12C18.5 15.5899 15.5899 18.5 12 18.5C8.41015 18.5 5.5 15.5899 5.5 12C5.5 8.41015 8.41015 5.5 12 5.5ZM11 12.4141L13.793 15.207L15.207 13.793L13 11.5859V9H11V12.4141Z\" fill=\"currentColor\"/><Path d=\"M4.27051 9.92773C4.09415 10.5875 4 11.2821 4 12C4 12.7179 4.09415 13.4125 4.27051 14.0723L2.33887 14.5889C2.11788 13.7622 2 12.8938 2 12C2 11.1062 2.11788 10.2378 2.33887 9.41113L4.27051 9.92773Z\" fill=\"currentColor\"/><Path d=\"M21.6611 9.41113C21.8821 10.2378 22 11.1062 22 12C22 12.8938 21.8821 13.7622 21.6611 14.5889L19.7295 14.0723C19.9058 13.4125 20 12.7179 20 12C20 11.2821 19.9058 10.5875 19.7295 9.92773L21.6611 9.41113Z\" fill=\"currentColor\"/><Path d=\"M8 5.07031C6.78577 5.7729 5.7729 6.78577 5.07031 8L3.33887 6.99805C4.21662 5.48113 5.48113 4.21662 6.99805 3.33887L8 5.07031Z\" fill=\"currentColor\"/><Path d=\"M17.002 3.33887C18.5189 4.21662 19.7834 5.48113 20.6611 6.99805L18.9297 8C18.2271 6.78577 17.2142 5.7729 16 5.07031L17.002 3.33887Z\" fill=\"currentColor\"/><Path d=\"M12 2C12.8938 2 13.7622 2.11788 14.5889 2.33887L14.0723 4.27051C13.4125 4.09415 12.7179 4 12 4C11.2821 4 10.5875 4.09415 9.92773 4.27051L9.41113 2.33887C10.2378 2.11788 11.1062 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSendLater;\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,gBAAq3D,EAAr3D,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,4MAA4M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kIAAkI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uIAAuI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6MAA6M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sMAAsM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4MAA4M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gIAAgI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sIAAsI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2LAA2L,KAAK,eAAc,CAAI,CAC73D,EAEc",
  "debugId": "995F3638AE0E931364756E2164756E21",
  "names": []
}