grepsr-ui-elements
Version:
23 lines (22 loc) • 621 B
TypeScript
/// <reference types="react" />
import PropTypes from "prop-types";
interface GrepsrCustomButtonProps {
label?: string;
color?: "info" | "success" | "error" | "warning" | "inherit" | "custom" | any;
backgroundColor?: any;
borderColor?: any;
textColor?: any;
sx?: any;
}
export { GrepsrCustomButtonProps };
declare const GrepsrCustomButton: {
(props: GrepsrCustomButtonProps): JSX.Element;
defaultProps: {
label: string;
};
propTypes: {
label: PropTypes.Requireable<string>;
color: PropTypes.Requireable<string>;
};
};
export default GrepsrCustomButton;