import { useState } from "react" import dynamic from "next/dynamic" import { RiCheckboxCircleFill } from "react-icons/ri" import { IoAdd } from "react-icons/io5" import { cn } from "@/lib/utils" import { ChannelInfo } from "@/types" import { isCertifiedUser } from "@/app/certification" const DefaultAvatar = dynamic(() => import("../default-avatar"), { loading: () => null, }) export function ChannelCard({ channel, onClick, className = "", }: { channel: ChannelInfo onClick?: (channel: ChannelInfo) => void className?: string }) { const [channelThumbnail, setChannelThumbnail] = useState(channel.thumbnail) const handleBadChannelThumbnail = () => { try { if (channelThumbnail) { setChannelThumbnail("") } } catch (err) { } } const isCreateButton = !channel.id return (