{
  "version": 3,
  "sources": ["src/IconFastShipping/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 IconFastShipping: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1.5-IconFastShipping\"><Path d=\"M7.49947 15C8.88003 15.0002 9.99947 16.1194 9.99947 17.5C9.99947 18.8806 8.88003 19.9998 7.49947 20C6.11876 20 4.99947 18.8807 4.99947 17.5C4.99947 16.1193 6.11876 15 7.49947 15Z\" fill=\"currentColor\"/><Path d=\"M16.4995 15C17.88 15.0002 18.9995 16.1194 18.9995 17.5C18.9995 18.8806 17.88 19.9998 16.4995 20C15.1188 20 13.9995 18.8807 13.9995 17.5C13.9995 16.1193 15.1188 15 16.4995 15Z\" fill=\"currentColor\"/><Path d=\"M13.6098 4C14.6289 4.00027 15.4319 4.86773 15.354 5.88379L14.7358 13.9082C13.5533 14.4899 12.7014 15.6391 12.5317 17H11.4672C11.2211 15.027 9.53907 13.5002 7.49947 13.5C5.58848 13.5 3.99073 14.8401 3.5942 16.6318C2.71142 16.121 2.14269 15.1352 2.22701 14.0391L2.42232 11.5H5.24947C5.66368 11.5 5.99947 11.1642 5.99947 10.75C5.99947 10.3358 5.66368 10 5.24947 10H2.53756L2.72994 7.5H7.24947C7.66368 7.5 7.99947 7.16421 7.99947 6.75C7.99947 6.33579 7.66368 6 7.24947 6H2.84517L2.87447 5.61621C2.9446 4.7045 3.7052 4.00006 4.61959 4H13.6098Z\" fill=\"currentColor\"/><Path d=\"M18.8129 6C19.7323 6.00013 20.5911 6.45967 21.101 7.22461L22.2202 8.90332C22.5862 9.45242 22.7424 10.1157 22.6606 10.7705L22.2924 13.7148C22.1389 14.9428 21.4007 15.9666 20.3803 16.5303C19.9468 14.7899 18.374 13.5002 16.4995 13.5C16.3999 13.5 16.3013 13.5046 16.2036 13.5117L16.8295 6H18.8129Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFastShipping;\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,EAAqE,EAAM,KAAK,CAAC,IACrF,gBAAw3C,EAAx3C,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,qLAAqL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iLAAiL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6hBAA6hB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wSAAwS,KAAK,eAAc,CAAI,CACh4C,EAEc",
  "debugId": "4AB37B5C49821ECD64756E2164756E21",
  "names": []
}