{
  "version": 3,
  "sources": ["src/IconVoiceover2/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 IconVoiceover2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconVoiceover2\"><Path d=\"M6.40332 10.5C7.56104 10.5 8.5 11.439 8.5 12.5967V19.4033C8.5 20.561 7.56104 21.5 6.40332 21.5C5.66724 21.4998 4.98523 21.1136 4.60645 20.4824L3.94336 19.377C3.80298 19.1431 3.55007 19.0001 3.27734 19C2.29594 19 1.5 18.2041 1.5 17.2227V14.7773C1.5 13.7959 2.29594 13 3.27734 13C3.55007 12.9999 3.80298 12.8569 3.94336 12.623L4.60645 11.5176C4.98523 10.8864 5.66724 10.5002 6.40332 10.5Z\" fill=\"currentColor\"/><Path d=\"M10.1973 13.1582C10.386 12.9569 10.7028 12.9462 10.9043 13.1348C11.6914 13.8727 12.0625 14.9537 12.0625 16C12.0625 17.0463 11.6914 18.1273 10.9043 18.8652C10.7028 19.0538 10.386 19.0431 10.1973 18.8418C10.0087 18.6403 10.0194 18.3235 10.2207 18.1348C10.7667 17.6227 11.0625 16.8286 11.0625 16C11.0625 15.1714 10.7667 14.3773 10.2207 13.8652C10.0194 13.6765 10.0087 13.3597 10.1973 13.1582Z\" fill=\"currentColor\"/><Path d=\"M14 2.5C17.2527 2.49998 20.4413 4.46697 22.4424 8.2666C22.5192 8.41243 22.5192 8.58757 22.4424 8.7334C20.4413 12.533 17.2527 14.5 14 14.5C13.7239 14.5 13.5 14.2761 13.5 14C13.5 13.7239 13.7239 13.5 14 13.5C16.7534 13.5 19.5664 11.8746 21.4297 8.5C19.5664 5.12538 16.7534 3.49998 14 3.5C11.1837 3.50002 8.30324 5.19989 6.44238 8.7334C6.31362 8.97751 6.01083 9.071 5.7666 8.94238C5.52253 8.81361 5.42901 8.51082 5.55762 8.2666C7.55873 4.46702 10.7473 2.50002 14 2.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14 5.75C15.5188 5.75 16.75 6.98122 16.75 8.5C16.75 10.0188 15.5188 11.25 14 11.25C12.4812 11.25 11.25 10.0188 11.25 8.5C11.25 6.98122 12.4812 5.75 14 5.75ZM14 6.75C13.0335 6.75 12.25 7.5335 12.25 8.5C12.25 9.4665 13.0335 10.25 14 10.25C14.9665 10.25 15.75 9.4665 15.75 8.5C15.75 7.5335 14.9665 6.75 14 6.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconVoiceover2;\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,EAAmE,EAAM,KAAK,CAAC,IACnF,gBAAswD,EAAtwD,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,qYAAqY,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wYAAwY,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mdAAmd,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uTAAuT,KAAK,eAAc,CAAI,CAC9wD,EAEc",
  "debugId": "A7E8AA6E5463FC8D64756E2164756E21",
  "names": []
}