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