grepsr-ui-elements
Version:
21 lines (20 loc) • 568 B
TypeScript
/// <reference types="react" />
import { BadgeProps } from "@mui/material";
import PropTypes from "prop-types";
interface ExtendBadgeProps extends BadgeProps {
}
export { ExtendBadgeProps };
declare const GrepsrBadge: {
(props: ExtendBadgeProps): JSX.Element;
defaultProps: {
color: string;
badgeContent: string;
className: string;
};
propTypes: {
color: PropTypes.Validator<string>;
badgeContent: PropTypes.Validator<any>;
className: PropTypes.Requireable<string>;
};
};
export default GrepsrBadge;