ComponentsButton Destructive
Button Destructive
ButtonDestructive.tsx
export function ButtonDestructive() {
return (
<button className="rounded-xl bg-gradient-to-t from-red-600 to-red-500 px-4 py-2 text-sm font-medium text-white">
Button
</button>
);
}