@krowdy-ui/core
Version:
React components that implement Google's Material Design.
15 lines (10 loc) • 452 B
TypeScript
// export { default } from '@material-ui/core/CardHeader';
// export * from '@material-ui/core/CardHeader';
import { CardHeaderProps } from '@material-ui/core/CardHeader';
import { PropTypes } from '..';
type PropsCardHeader = {
shadow?: boolean,
}
export type KrowdyCardHeaderProps = Omit<CardHeaderProps, keyof PropsCardHeader> & PropsCardHeader;
declare const CardHeader: React.ComponentType<KrowdyCardHeaderProps>;
export default CardHeader;