mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
10 lines
373 B
TypeScript
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;
|