use headphones icon for huddles
This commit is contained in:
@@ -10,7 +10,7 @@ import {
|
|||||||
CircleCheck,
|
CircleCheck,
|
||||||
StickyNote,
|
StickyNote,
|
||||||
Timer,
|
Timer,
|
||||||
Phone,
|
Headphones,
|
||||||
type LucideIcon,
|
type LucideIcon,
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
@@ -197,7 +197,7 @@ function StreamRow({
|
|||||||
<div className="flex shrink-0 items-center gap-1.5">
|
<div className="flex shrink-0 items-center gap-1.5">
|
||||||
{hasActiveHuddle && (
|
{hasActiveHuddle && (
|
||||||
<span className="flex items-center gap-1 rounded-full bg-red-500/15 px-1.5 py-0.5">
|
<span className="flex items-center gap-1 rounded-full bg-red-500/15 px-1.5 py-0.5">
|
||||||
<Phone className="size-3 text-red-400" />
|
<Headphones className="size-3 text-red-400" />
|
||||||
<span className="text-[10px] font-medium text-red-400">{huddleCount}</span>
|
<span className="text-[10px] font-medium text-red-400">{huddleCount}</span>
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { forwardRef, useMemo } from "react";
|
import { forwardRef, useMemo } from "react";
|
||||||
import { Timer, Phone } from "lucide-react";
|
import { Timer, Headphones } from "lucide-react";
|
||||||
import { cn, getInitials } from "@/lib/utils";
|
import { cn, getInitials } from "@/lib/utils";
|
||||||
import { useLiveLatestChild } from "@/hooks/use-particle";
|
import { useLiveLatestChild } from "@/hooks/use-particle";
|
||||||
import { useAuthStore } from "@/stores/auth-store";
|
import { useAuthStore } from "@/stores/auth-store";
|
||||||
@@ -151,7 +151,7 @@ export const StreamCard = forwardRef<HTMLDivElement, StreamCardProps>(function S
|
|||||||
<div className="ml-auto flex shrink-0 items-center gap-1.5">
|
<div className="ml-auto flex shrink-0 items-center gap-1.5">
|
||||||
{hasActiveHuddle && (
|
{hasActiveHuddle && (
|
||||||
<span className="flex items-center gap-1 rounded-full bg-red-500/15 px-1.5 py-0.5">
|
<span className="flex items-center gap-1 rounded-full bg-red-500/15 px-1.5 py-0.5">
|
||||||
<Phone className="size-3 text-red-400" />
|
<Headphones className="size-3 text-red-400" />
|
||||||
<span className="text-[10px] font-medium text-red-400">{huddleCount}</span>
|
<span className="text-[10px] font-medium text-red-400">{huddleCount}</span>
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user