LiveKit docs › Hooks › useIsMuted

---

# useIsMuted

The `useIsMuted` hook is used to implement the `TrackMutedIndicator` or your custom implementation of it. It returns a `boolean` that indicates if the track is muted or not.

## Import

```typescript
import { useIsMuted } from "@livekit/components-react";

```

## Usage

With a track reference

```tsx
const isMuted = useIsMuted(track);

```

## Properties

- **`trackRef`** _(TrackReferenceOrPlaceholder)_: A `TrackReference` indicating the track to monitor.

## Returns

boolean indicating if the track is muted

```typescript
boolean;

```

---

This document was rendered at 2026-06-07T11:32:49.325Z.
For the latest version of this document, see [https://docs.livekit.io/reference/components/react/hook/useismuted.md](https://docs.livekit.io/reference/components/react/hook/useismuted.md).

To explore all LiveKit documentation, see [llms.txt](https://docs.livekit.io/llms.txt).