ComponentsButton Destructive
Button Destructive
ButtonDestructive.tsx
export function ButtonDestructive() {
return (
<button className="py-2 px-4 rounded-xl text-sm font-medium bg-red-950 text-red-500 border border-red-900">
Button
</button>
);
}