cdbreact
Version:
Elegant UI Kit and reusable components for building mobile-first, responsive webistes and web apps
23 lines (22 loc) • 635 B
TypeScript
import React from 'react';
import PropTypes from 'prop-types';
interface Props {
children?: React.ReactNode;
className?: string;
role?: string;
style?: React.CSSProperties;
}
declare const ButtonToolbar: {
(props: Props): JSX.Element;
propTypes: {
"aria-label": PropTypes.Requireable<string>;
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
className: PropTypes.Requireable<string>;
role: PropTypes.Requireable<string>;
};
defaultProps: {
role: string;
};
};
export default ButtonToolbar;
export { ButtonToolbar as CDBBtnTb };