import { cn } from "@/lib/utils";
interface Props {
className?: string;
}
export const SlackIcon = ({ className }: Props) => {
return (
);
};
export const TelegramIcon = ({ className }: Props) => {
return (
);
};
export const DiscordIcon = ({ className }: Props) => {
return (
);
};