import React from 'react' import { Button } from '@/components/ui/Button' /** * Button Variants Demo * Shows all 8 visual variants and 4 sizes of the Button component * * Variants include: * - default: Primary brand color button * - destructive: Red danger button * - outline: Bordered light button * - secondary: Gray secondary button * - ghost: Transparent hover button * - link: Link-style button * - gradient: Brand gradient button * - gradientPrimary: Primary gradient button * * Sizes include: * - default: Standard size (h-10) * - sm: Small size (h-9) * - lg: Large size (h-11) * - icon: Square icon size (h-10 w-10) */ export default function ButtonVariants() { return (