{
  "version": 3,
  "sources": ["src/IconVoiceSettings/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 IconVoiceSettings: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconVoiceSettings\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.64359 9.5C9.17326 9.50004 9.66449 9.77974 9.93461 10.2354L10.5567 11.2852C10.6459 11.4356 10.8076 11.5286 10.9825 11.5303L12.2168 11.54C12.7464 11.5444 13.2346 11.8284 13.501 12.2861L13.8907 12.9551C14.1596 13.4175 14.1617 13.9885 13.8965 14.4531L13.2979 15.502C13.2103 15.6555 13.2103 15.8445 13.2979 15.998L13.8965 17.0469C14.1617 17.5115 14.1596 18.0825 13.8907 18.5449L13.501 19.2139C13.2346 19.6716 12.7465 19.9556 12.2168 19.96L10.9825 19.9697C10.8076 19.9714 10.6459 20.0644 10.5567 20.2148L9.93461 21.2646C9.66449 21.7203 9.17326 22 8.64359 22H7.85258C7.32297 21.9998 6.83161 21.7203 6.56156 21.2646L5.93949 20.2148C5.85025 20.0644 5.68859 19.9713 5.51371 19.9697L4.27933 19.96C3.74979 19.9555 3.2615 19.6716 2.99515 19.2139L2.60551 18.5449C2.33664 18.0826 2.33459 17.5114 2.59965 17.0469L3.19828 15.998C3.28594 15.8445 3.28594 15.6555 3.19828 15.502L2.59965 14.4531C2.33459 13.9886 2.33664 13.4174 2.60551 12.9551L2.99515 12.2861C3.26151 11.8284 3.74979 11.5445 4.27933 11.54L5.51371 11.5303C5.68859 11.5287 5.85025 11.4356 5.93949 11.2852L6.56156 10.2354C6.83161 9.77975 7.32297 9.50015 7.85258 9.5H8.64359ZM8.24808 14C7.28178 14.0002 6.49808 14.7836 6.49808 15.75C6.49808 16.7164 7.28178 17.4998 8.24808 17.5C9.21453 17.4999 9.99808 16.7165 9.99808 15.75C9.99808 14.7835 9.21453 14.0001 8.24808 14Z\" fill=\"currentColor\"/><Path d=\"M18.4981 2C18.7742 2 18.9981 2.22386 18.9981 2.5V16C18.9981 16.2761 18.7742 16.5 18.4981 16.5C18.2221 16.4998 17.9981 16.276 17.9981 16V2.5C17.9981 2.22397 18.2221 2.00018 18.4981 2Z\" fill=\"currentColor\"/><Path d=\"M21.4981 7.20801C21.7741 7.20801 21.9979 7.43201 21.9981 7.70801V10.792C21.9979 11.068 21.7741 11.292 21.4981 11.292C21.2222 11.2918 20.9983 11.0679 20.9981 10.792V7.70801C20.9983 7.43212 21.2222 7.20818 21.4981 7.20801Z\" fill=\"currentColor\"/><Path d=\"M15.4981 6.125C15.7742 6.125 15.9981 6.34886 15.9981 6.625V10C15.9981 10.2761 15.7742 10.5 15.4981 10.5C15.2221 10.4998 14.9981 10.276 14.9981 10V6.625C14.9981 6.34897 15.2221 6.12517 15.4981 6.125Z\" fill=\"currentColor\"/><Path d=\"M12.4981 4.04199C12.7742 4.04199 12.9981 4.26585 12.9981 4.54199V8.5C12.9981 8.77614 12.7742 9 12.4981 9C12.2221 8.99983 11.9981 8.77603 11.9981 8.5V4.54199C11.9981 4.26596 12.2221 4.04217 12.4981 4.04199Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconVoiceSettings;\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,EAAsE,EAAM,KAAK,CAAC,IACtF,gBAAm2E,EAAn2E,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,myCAAmyC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yLAAyL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+NAA+N,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yMAAyM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,CAAI,CAC32E,EAEc",
  "debugId": "62AA62AA1CA72B4264756E2164756E21",
  "names": []
}