import { YOUTUBE_UPLOAD_LIMIT_USER_MESSAGE } from "@/lib/youtube/errors"; type Props = { className?: string; }; export function YouTubeLimitBanner({ className = "" }: Props) { return (

YouTube upload limit reached

{YOUTUBE_UPLOAD_LIMIT_USER_MESSAGE}

); }