@hc.ds/mobile
Version:
Healthy Church Design System - HC Mobile
10 lines (8 loc) • 336 B
text/typescript
import type { ButtonProps as AntButtonProps } from '@ant-design/react-native/lib/button';
import type { ReactNode } from 'react';
export interface ButtonProps extends AntButtonProps {
children?: ReactNode;
block?: boolean;
theme?: 'primary' | 'success' | 'danger' | 'warning' | 'ghost' | 'light';
outline?: boolean;
}