@krowdy-ui/core
Version:
React components that implement Google's Material Design.
13 lines (8 loc) • 310 B
TypeScript
import { ButtonGroupProps } from '@material-ui/core/ButtonGroup';
import { PropTypes } from '..';
type Props = {
color?: PropTypes.Color;
}
export type KrowdyButtonProps = Omit<ButtonGroupProps, keyof Props> & Props;
declare const Buttons: React.ComponentType<KrowdyButtonProps>;
export default Buttons;