{
  "version": 3,
  "sources": ["src/IconPhoneHaptic2/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 IconPhoneHaptic2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-1-stroke-1.5-IconPhoneHaptic2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.749 3C16.7155 3 17.499 3.7835 17.499 4.75V19.25C17.499 20.2165 16.7155 21 15.749 21H8.24902C7.28253 21 6.49902 20.2165 6.49902 19.25V4.75C6.49902 3.7835 7.28253 3 8.24902 3H15.749ZM11.249 4.5C10.8348 4.5 10.499 4.83579 10.499 5.25C10.499 5.66421 10.8348 6 11.249 6H12.749C13.1632 6 13.499 5.66421 13.499 5.25C13.499 4.83579 13.1632 4.5 12.749 4.5H11.249Z\" fill=\"currentColor\"/><Path d=\"M4.41211 15.4443C4.77226 15.2403 5.23022 15.3665 5.43457 15.7266C5.63866 16.0866 5.51216 16.5445 5.15234 16.749L3.33691 17.7793C2.97675 17.9836 2.51893 17.8571 2.31445 17.4971C2.11005 17.1368 2.23647 16.6791 2.59668 16.4746L4.41211 15.4443Z\" fill=\"currentColor\"/><Path d=\"M18.5645 15.7266C18.7689 15.3664 19.2267 15.24 19.5869 15.4443L21.4023 16.4746C21.762 16.6792 21.8888 17.1371 21.6846 17.4971C21.4802 17.8569 21.0222 17.9831 20.6621 17.7793L18.8467 16.749C18.4865 16.5446 18.3602 16.0868 18.5645 15.7266Z\" fill=\"currentColor\"/><Path d=\"M4.24902 11.25C4.66324 11.25 4.99902 11.5858 4.99902 12C4.99902 12.4142 4.66324 12.75 4.24902 12.75H1.86328C1.44907 12.75 1.11328 12.4142 1.11328 12C1.11328 11.5858 1.44907 11.25 1.86328 11.25H4.24902Z\" fill=\"currentColor\"/><Path d=\"M22.1348 11.25C22.549 11.25 22.8848 11.5858 22.8848 12C22.8848 12.4142 22.549 12.75 22.1348 12.75H19.749C19.3348 12.75 18.999 12.4142 18.999 12C18.999 11.5858 19.3348 11.25 19.749 11.25H22.1348Z\" fill=\"currentColor\"/><Path d=\"M2.31445 6.50293C2.51894 6.14285 2.97675 6.01635 3.33691 6.2207L5.15234 7.25098C5.51216 7.45548 5.63868 7.91339 5.43457 8.27344C5.23023 8.63347 4.77225 8.75964 4.41211 8.55566L2.59668 7.52539C2.23648 7.32095 2.11007 6.86315 2.31445 6.50293Z\" fill=\"currentColor\"/><Path d=\"M20.6621 6.22168C21.0223 6.01752 21.4802 6.1438 21.6846 6.50391C21.8884 6.86397 21.7622 7.322 21.4023 7.52637L19.5869 8.55664C19.2269 8.7609 18.769 8.63421 18.5645 8.27441C18.36 7.91419 18.4865 7.4564 18.8467 7.25195L20.6621 6.22168Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPhoneHaptic2;\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,gBAAsgE,EAAtgE,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yWAAyW,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mPAAmP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gPAAgP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4MAA4M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qMAAqM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mPAAmP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4OAA4O,KAAK,eAAc,CAAI,CAC9gE,EAEc",
  "debugId": "40CD0152D227BB2364756E2164756E21",
  "names": []
}