{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSwitchVoice/index.tsx"],
  "sourcesContent": [
    "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\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\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={maskId}\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(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSwitchVoice: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSwitchVoice\"><Path d=\"M4.27441 14.1318C4.25844 14.2517 4.25 14.3748 4.25 14.5C4.25 15.8235 5.18513 16.9282 6.43066 17.1904V15L9.85938 18.25L6.43066 21.5V19.2148C4.07581 18.9335 2.25 16.9306 2.25 14.5C2.25 14.2863 2.2644 14.0753 2.29199 13.8682L4.27441 14.1318Z\" fill=\"currentColor\"/><Path d=\"M18.5 17H16.5V3H18.5V17Z\" fill=\"currentColor\"/><Path d=\"M7.56934 9.78418C9.92424 10.0655 11.75 12.0693 11.75 14.5C11.75 14.7137 11.7356 14.9247 11.708 15.1318L9.72559 14.8682C9.74156 14.7483 9.75 14.6252 9.75 14.5C9.75 13.1764 8.81496 12.0708 7.56934 11.8086V14L4.14062 10.75L7.56934 7.5V9.78418Z\" fill=\"currentColor\"/><Path d=\"M15 12H13V6H15V12Z\" fill=\"currentColor\"/><Path d=\"M22 12H20V8H22V12Z\" fill=\"currentColor\"/><Path d=\"M11.5 8.5H9.5V4H11.5V8.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSwitchVoice;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,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,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAA00B,EAA10B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,iPAAiP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2BAA2B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mPAAmP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qBAAqB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qBAAqB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4BAA4B,KAAK,eAAc,CAAI,EACl1B,EAEc",
  "debugId": "F188431474A5F32E64756E2164756E21",
  "names": []
}