gebeya-whatsapp-verify
Version:
Reusable WhatsApp phone verification components for React applications (Supabase Edge Function integration)
17 lines • 650 B
TypeScript
import React from 'react';
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
variant?: 'default' | 'outline' | 'secondary' | 'ghost';
size?: 'sm' | 'default' | 'lg' | 'xl';
loading?: boolean;
children: React.ReactNode;
color?: 'default' | 'blue' | 'green' | 'red' | 'purple' | 'orange' | 'gray' | 'custom';
customColors?: {
background?: string;
text?: string;
hover?: string;
border?: string;
};
}
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
export { Button };
//# sourceMappingURL=Button.d.ts.map