{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMicrophoneOff/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 IconMicrophoneOff: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconMicrophoneOff\"><Path d=\"M3.00015 1.58569L22.4144 20.9999L21.0002 22.4141L17.0439 18.4579C15.9627 19.2029 14.6238 19.7783 13.0002 19.9484V21.9999H11.0002V19.9487C7.44662 19.5783 5.29928 17.2757 4.17565 15.5443L3.63128 14.7054L5.30898 13.6167L5.85334 14.4555C6.89295 16.0575 8.80006 17.9999 12.0002 17.9999C13.4639 17.9999 14.6461 17.5974 15.599 17.013L14.1168 15.5308C13.4735 15.8317 12.7557 15.9999 12.0002 15.9999C9.23874 15.9999 7.00016 13.7613 7.00016 10.9999V8.41413L1.58594 2.99991L3.00015 1.58569Z\" fill=\"currentColor\"/><Path d=\"M17.0002 11C17.0002 11.5305 16.9175 12.0418 16.7644 12.5216L8.1062 3.86334C9.02274 2.72695 10.4266 2 12.0002 2C14.7616 2 17.0002 4.23858 17.0002 7V11Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMicrophoneOff;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAA8wB,EAA9wB,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,keAAke,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,CAAI,EACtxB,EAEc",
  "debugId": "A0D2062BFAD8862664756E2164756E21",
  "names": []
}