UNPKG

react-native-fab

Version:

A FAB button component for Android and iOS, customizable, simple and as per material design specs.

15 lines (11 loc) 276 B
import { Component } from 'react'; interface Props { visible?: boolean; buttonColor?: string; onClickAction?: () => void; iconTextColor?: string; iconTextComponent?: JSX.Element; snackOffset?: number; } class FAB extends Component<Props> {} export default FAB;