{
  "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-1.5-IconSendLater\"><Path d=\"M14.3945 20.9365L14.5889 21.6611C13.7624 21.8821 12.8942 22 12 22C11.1058 22 10.2376 21.8821 9.41113 21.6611L9.60547 20.9365L9.79883 20.2119C10.5001 20.3994 11.2377 20.5 12 20.5C12.7623 20.5 13.4999 20.3994 14.2012 20.2119L14.3945 20.9365Z\" fill=\"currentColor\"/><Path d=\"M4.63672 16.25C5.3832 17.5402 6.45984 18.6168 7.75 19.3633L7.37402 20.0117L6.99902 20.6611C5.48178 19.7833 4.21674 18.5182 3.33887 17.001L3.98828 16.626L4.63672 16.25Z\" fill=\"currentColor\"/><Path d=\"M20.0117 16.626L20.6611 17.001C19.7833 18.5182 18.5182 19.7833 17.001 20.6611L16.626 20.0117L16.25 19.3633C17.5402 18.6168 18.6168 17.5402 19.3633 16.25L20.0117 16.626Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 5C15.866 5 19 8.13401 19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5ZM11.25 12.3105L13.9697 15.0303L15.0303 13.9697L12.75 11.6895V8.5H11.25V12.3105Z\" fill=\"currentColor\"/><Path d=\"M3.06348 9.60547L3.78809 9.79883C3.60063 10.5001 3.5 11.2377 3.5 12C3.5 12.7623 3.60063 13.4999 3.78809 14.2012L3.06348 14.3945L2.33887 14.5889C2.11794 13.7624 2 12.8942 2 12C2 11.1058 2.11794 10.2376 2.33887 9.41113L3.06348 9.60547Z\" fill=\"currentColor\"/><Path d=\"M21.6611 9.41113C21.8821 10.2376 22 11.1058 22 12C22 12.8942 21.8821 13.7624 21.6611 14.5889L20.9365 14.3945L20.2119 14.2012C20.3994 13.4999 20.5 12.7623 20.5 12C20.5 11.2377 20.3994 10.5001 20.2119 9.79883L20.9365 9.60547L21.6611 9.41113Z\" fill=\"currentColor\"/><Path d=\"M7.37402 3.98828L7.75 4.63672C6.45984 5.3832 5.3832 6.45984 4.63672 7.75L3.98828 7.37402L3.33887 6.99902C4.21674 5.48178 5.48177 4.21674 6.99902 3.33887L7.37402 3.98828Z\" fill=\"currentColor\"/><Path d=\"M17.001 3.33887C18.5182 4.21674 19.7833 5.48177 20.6611 6.99902L20.0117 7.37402L19.3633 7.75C18.6168 6.45984 17.5402 5.3832 16.25 4.63672L16.626 3.98828L17.001 3.33887Z\" fill=\"currentColor\"/><Path d=\"M12 2C12.8942 2 13.7624 2.11794 14.5889 2.33887L14.3945 3.06348L14.2012 3.78809C13.4999 3.60063 12.7623 3.5 12 3.5C11.2377 3.5 10.5001 3.60063 9.79883 3.78809L9.60547 3.06348L9.41113 2.33887C10.2376 2.11794 11.1058 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,gBAA6pE,EAA7pE,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0KAA0K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2KAA2K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8LAA8L,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4OAA4O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4KAA4K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2KAA2K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iOAAiO,KAAK,eAAc,CAAI,CACrqE,EAEc",
  "debugId": "7859FA7FE559BF8464756E2164756E21",
  "names": []
}