import { Button, Card, CardContent, Skeleton, Typography } from "poyraz-ui/atoms";
import { Alert, AlertDescription, AlertTitle } from "poyraz-ui/molecules";
import { Ban, CircleAlert, Inbox } from "lucide-react";
import type { ReactNode } from "react";
type FeedbackStateProps = {
action?: ReactNode;
description: string;
title: string;
variant: "empty" | "error" | "forbidden";
};
export function FeedbackState({ action, description, title, variant }: FeedbackStateProps) {
if (variant === "empty") {
return (
{description}