styles-update

This commit is contained in:
Rogelio
2025-10-23 06:19:38 +00:00
parent 45d375622b
commit b0f75f390f
5 changed files with 31 additions and 17 deletions

View File

@@ -1,11 +1,12 @@
import React from 'react';
export interface ButtonProps {
children: React.ReactNode;
variant?: 'primary' | 'secondary' | 'success' | 'danger';
variant?: 'primary' | 'secondary' | 'accent' | 'success' | 'danger' | 'outline';
size?: 'sm' | 'md' | 'lg';
disabled?: boolean;
onClick?: () => void;
className?: string;
fullWidth?: boolean;
}
export declare const Button: React.FC<ButtonProps>;
export default Button;