import { ChevronDown, Hash, Volume2 } from "lucide-react" import { Button } from "./ui/button" interface Channel { id: string name: string type: "text" | "voice" | "category" } interface ChannelListItemProps { channel: Channel } export default function ChannelListItem({ channel }: ChannelListItemProps) { if (channel.type === "category") { return (
{channel.name}
) } return ( <> ) }