0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-20 22:52:46 -05:00
verdaccio/packages/plugins/ui-theme/src/components/DialogTitle.tsx

11 lines
373 B
TypeScript
Raw Normal View History

import { default as MaterialUIDialogTitle, DialogTitleProps } from '@material-ui/core/DialogTitle';
import React, { forwardRef } from 'react';
type DialogTitleRef = HTMLDivElement;
const DialogTitle = forwardRef<DialogTitleRef, DialogTitleProps>(function DialogTitle(props, ref) {
return <MaterialUIDialogTitle {...props} ref={ref} />;
});
export default DialogTitle;