@hc.ds/mobile
Version:
Healthy Church Design System - HC Mobile
9 lines • 368 B
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;
}
//# sourceMappingURL=type.d.ts.map