You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
443 B
13 lines
443 B
import { StyleProp, ViewStyle } from 'react-native';
|
|
import { ButtonProps } from '../Button';
|
|
import { RneFunctionComponent } from '../helpers';
|
|
export interface FABProps extends Omit<ButtonProps, 'size' | 'color'> {
|
|
color?: string;
|
|
size?: 'large' | 'small';
|
|
placement?: 'left' | 'right';
|
|
visible?: boolean;
|
|
upperCase?: boolean;
|
|
style?: StyleProp<ViewStyle>;
|
|
}
|
|
export declare const FAB: RneFunctionComponent<FABProps>;
|