reactnativeepictrailsds
Version:
A flexible and customizable design system for React Native, providing pre-built UI components, typography, and themes to enhance mobile app development.
12 lines (11 loc) • 314 B
text/typescript
type StatusType = 'information' | 'success' | 'warning' | 'error';
type ButtonType = 'primary' | 'subtle';
export interface StatusButtonProps {
label?: string;
type?: StatusType;
buttonType?: ButtonType;
iconLeft?: boolean;
iconRight?: boolean;
iconOnly?: boolean;
onPress?: () => void;
}