@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
32 lines • 1.17 kB
TypeScript
export default Button;
declare function Button({ className, inputProps, color, rounded, circular, onClick, ariaLabel, children, ariaAttributes, text, type, }: {
className: any;
inputProps?: {};
color?: string;
rounded: any;
circular: any;
onClick: any;
ariaLabel: any;
children: any;
ariaAttributes?: {};
text: any;
type?: string;
}): React.JSX.Element;
declare namespace Button {
namespace propTypes {
let className: PropTypes.Requireable<string>;
let color: PropTypes.Requireable<string>;
let text: PropTypes.Requireable<string>;
let rounded: PropTypes.Requireable<boolean>;
let circular: PropTypes.Requireable<boolean>;
let inputProps: PropTypes.Requireable<object>;
let onClick: PropTypes.Requireable<(...args: any[]) => any>;
let ariaLabel: PropTypes.Requireable<string>;
let ariaAttributes: PropTypes.Requireable<object>;
let children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
let type: PropTypes.Requireable<string>;
}
}
import React from 'react';
import PropTypes from 'prop-types';
//# sourceMappingURL=Button.d.ts.map