import { type ButtonHTMLAttributes } from 'react'; import { cn, pressable, text } from '@/styles/theme'; type ButtonProps = ButtonHTMLAttributes; export function Button({ children, className, disabled = false, type = 'button', ...props }: ButtonProps) { return ( ); }