UNPKG

zmp-react

Version:

Build full featured iOS & Android apps using ZMP & React

24 lines (19 loc) 520 B
import * as React from 'react'; interface FabButtonsProps { slot?: string; id?: string | number; className?: string; style?: React.CSSProperties; position?: string; 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 FabButtons: React.FunctionComponent<FabButtonsProps>; export default FabButtons;