zmp-react
Version:
Build full featured iOS & Android apps using ZMP & React
34 lines (29 loc) • 725 B
TypeScript
import * as React from 'react';
interface FabProps {
slot?: string;
id?: string | number;
className?: string;
style?: React.CSSProperties;
morphTo ?: string;
href ?: boolean | string;
target ?: string;
text ?: string;
position ?: string;
tooltip ?: string;
tooltipTrigger ?: string;
onClick ?: (event?: any) => void;
large?: boolean;
small?: boolean;
disabled?: boolean;
color?: string;
colorTheme?: string;
textColor?: string;
bgColor?: string;
borderColor?: string;
rippleColor?: string;
themeDark?: boolean;
ref?: React.MutableRefObject<{el: HTMLElement | null}>;
children?: React.ReactNode;
}
declare const Fab: React.FunctionComponent<FabProps>;
export default Fab;