"use client"; import { PlusCircleIcon } from "@heroicons/react/24/solid"; interface AddAlertButtonProps { channel: string; onClick?: () => void; } export const AddAlertButton: React.FC = ({ channel, onClick = () => {} }) => { return ( ); };