reactnativeepictrailsds
Version:
A modern, production-ready design system for React Native — featuring pre-styled, customizable components, state-based UI logic, theme support, and seamless integration with Tailwind, Expo, and TypeScript. Built for scalable mobile app development with ac
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;
}