{
  "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-2-stroke-1-IconPhoneHaptic2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.499 3C15.8797 3 16.999 4.11929 16.999 5.5V18.5C16.999 19.8807 15.8797 21 14.499 21H9.49902C8.11831 21 6.99902 19.8807 6.99902 18.5V5.5C6.99902 4.11929 8.11831 3 9.49902 3H14.499ZM10.999 5C10.7229 5 10.499 5.22386 10.499 5.5C10.499 5.77614 10.7229 6 10.999 6H12.999C13.2752 6 13.499 5.77614 13.499 5.5C13.499 5.22386 13.2752 5 12.999 5H10.999Z\" fill=\"currentColor\"/><Path d=\"M4.75195 15.5391C4.992 15.4028 5.2972 15.4867 5.43359 15.7266C5.56954 15.9666 5.48588 16.2719 5.24609 16.4082L2.99609 17.6855C2.75609 17.8216 2.45082 17.7369 2.31445 17.4971C2.17834 17.257 2.26204 16.9518 2.50195 16.8154L4.75195 15.5391Z\" fill=\"currentColor\"/><Path d=\"M18.5645 15.7266C18.7008 15.4867 19.006 15.4028 19.2461 15.5391L21.4961 16.8154C21.736 16.9518 21.8197 17.257 21.6836 17.4971C21.5472 17.7369 21.242 17.8216 21.002 17.6855L18.752 16.4082C18.5122 16.2719 18.4285 15.9666 18.5645 15.7266Z\" fill=\"currentColor\"/><Path d=\"M4.24902 11.5C4.52517 11.5 4.74902 11.7239 4.74902 12C4.74902 12.2761 4.52517 12.5 4.24902 12.5H1.86328C1.58714 12.5 1.36328 12.2761 1.36328 12C1.36328 11.7239 1.58714 11.5 1.86328 11.5H4.24902Z\" fill=\"currentColor\"/><Path d=\"M22.1348 11.5C22.4109 11.5 22.6348 11.7239 22.6348 12C22.6348 12.2761 22.4109 12.5 22.1348 12.5H19.749C19.4729 12.5 19.249 12.2761 19.249 12C19.249 11.7239 19.4729 11.5 19.749 11.5H22.1348Z\" fill=\"currentColor\"/><Path d=\"M2.31445 6.50293C2.45085 6.26302 2.75604 6.17918 2.99609 6.31543L5.24609 7.5918C5.48616 7.72808 5.56975 8.03332 5.43359 8.27344C5.29729 8.51359 4.99211 8.59822 4.75195 8.46191L2.50195 7.18457C2.26204 7.04818 2.17821 6.74298 2.31445 6.50293Z\" fill=\"currentColor\"/><Path d=\"M21.002 6.31543C21.242 6.17918 21.5472 6.26302 21.6836 6.50293C21.8198 6.74298 21.736 7.04818 21.4961 7.18457L19.2461 8.46191C19.0059 8.59822 18.7008 8.51359 18.5645 8.27344C18.4283 8.03332 18.5119 7.72808 18.752 7.5918L21.002 6.31543Z\" 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,gBAAy+D,EAAz+D,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6VAA6V,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gPAAgP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qMAAqM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gMAAgM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mPAAmP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,CAAI,CACj/D,EAEc",
  "debugId": "6E02C364AAF46CA264756E2164756E21",
  "names": []
}