{
  "version": 3,
  "sources": ["src/IconVoice3/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 IconVoice3: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconVoice3\"><Path d=\"M7.8 1C7.31588 1 6.90581 1.20984 6.56843 1.51667C6.23773 1.81741 5.95798 2.227 5.71174 2.68059C5.22258 3.58168 4.80002 4.78437 4.3793 5.9818L4.37514 5.99363C3.94588 7.21538 3.51338 8.44635 2.99762 9.46993C2.47476 10.5076 1.91248 11.2347 1.27639 11.5528C1.107 11.6375 1 11.8106 1 12C1 12.1894 1.107 12.3625 1.27639 12.4472C1.91248 12.7653 2.47476 13.4924 2.99762 14.5301C3.51338 15.5536 3.94565 16.784 4.37491 18.0057L4.37929 18.0182C4.80001 19.2156 5.22258 20.4183 5.71174 21.3194C5.95798 21.773 6.23773 22.1826 6.56843 22.4833C6.90581 22.7902 7.31588 23 7.8 23C8.76432 23 9.38231 22.2244 9.80205 21.4185C10.2328 20.5914 10.5717 19.507 10.8926 18.4799L10.9022 18.4491C11.2347 17.3853 11.5496 16.3831 11.9349 15.6435C12.3354 14.8744 12.7018 14.6 13.05 14.6C13.5088 14.6 13.8715 14.8183 14.2131 15.2366C14.5674 15.6704 14.8552 16.2675 15.1534 16.9302C15.1858 17.0022 15.2184 17.0751 15.2513 17.1487C15.5076 17.7225 15.7809 18.3344 16.1071 18.8118C16.4785 19.3553 17.0033 19.85 17.775 19.85C18.5888 19.85 19.079 19.2687 19.3995 18.6543C19.6823 18.1123 19.9066 17.4053 20.13 16.7008C20.16 16.6063 20.1899 16.5119 20.22 16.418C20.4827 15.597 20.7651 14.7712 21.1645 14.0569C21.5614 13.3471 22.0556 12.7812 22.7236 12.4472C22.8868 12.3656 22.9926 12.2015 22.9996 12.0192C23.0066 11.8368 22.9137 11.6651 22.7572 11.5713C22.2142 11.2454 21.7753 10.6815 21.392 9.95404C21.0104 9.22989 20.7108 8.39769 20.4137 7.57235L20.4066 7.55262C20.118 6.75102 19.824 5.93427 19.4599 5.32154C19.0977 4.71196 18.5735 4.15 17.775 4.15C17.0033 4.15 16.4785 4.64473 16.1071 5.18822C15.7809 5.66556 15.5076 6.27746 15.2513 6.85125C15.2184 6.92477 15.1858 6.99792 15.1534 7.06982C14.8552 7.73249 14.5674 8.32958 14.2131 8.76342C13.8715 9.18174 13.5088 9.4 13.05 9.4C12.7018 9.4 12.3354 9.12562 11.9349 8.35653C11.5496 7.61687 11.2347 6.6147 10.9022 5.55086L10.8926 5.52013C10.5717 4.49303 10.2328 3.40862 9.80205 2.58153C9.38231 1.77562 8.76432 1 7.8 1Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconVoice3;\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,EAA+D,EAAM,KAAK,CAAC,IAC/E,gBAAs/D,EAAt/D,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,EAAE,w4DAAw4D,KAAK,eAAc,CAAI,CAC9/D,EAEc",
  "debugId": "EBE8E0959988539964756E2164756E21",
  "names": []
}