grepsr-ui-elements
Version:
26 lines (25 loc) • 856 B
TypeScript
/// <reference types="react" />
import { TypographyProps } from '@mui/material/Typography';
import PropTypes from 'prop-types';
interface ExtendTypographyProps extends TypographyProps {
[restProps: string]: any;
onClick?: any;
}
export { ExtendTypographyProps };
declare const GrepsrTypography: {
(props: ExtendTypographyProps): JSX.Element;
defaultProps: {
paragraph: boolean;
};
propTypes: {
children: PropTypes.Requireable<string>;
align: PropTypes.Requireable<string>;
gutterBottom: PropTypes.Requireable<boolean>;
noWrap: PropTypes.Requireable<boolean>;
paragraph: PropTypes.Requireable<boolean>;
variant: PropTypes.Requireable<string>;
color: PropTypes.Requireable<string>;
onclick: PropTypes.Requireable<any>;
};
};
export default GrepsrTypography;