UNPKG

@krowdy-ui/core

Version:

React components that implement Google's Material Design.

15 lines (10 loc) 380 B
// export { default } from '@material-ui/core/Fab'; // export * from '@material-ui/core/Fab'; import { FabProps } from '@material-ui/core/Fab'; import { PropTypes } from '..'; type Props = { color?: PropTypes.Color; } export type KrowdyButtonProps = Omit<FabProps, keyof Props> & Props; declare const Buttons: React.ComponentType<KrowdyButtonProps>; export default Buttons;