0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/packages/plugins/ui-theme/src/components/DialogTitle.tsx
2021-04-15 21:10:49 +02:00

10 lines
373 B
TypeScript

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;