2026-07-16 20:04:40 +05:30

8 lines
159 B
TypeScript

export interface ActionButtonProps {
label: string;
onPress: () => void;
variant?: 'primary' | 'secondary';
loading?: boolean;
disabled?: boolean;
}