import { type ButtonHTMLAttributes, type InputHTMLAttributes, type ReactNode, type SelectHTMLAttributes, type TextareaHTMLAttributes, useEffect } from 'react'; export function Button({ variant = 'default', ...props }: ButtonHTMLAttributes & { variant?: 'default' | 'primary' | 'danger' | 'ghost' }) { return