mirror of
https://github.com/SomboChea/ui
synced 2024-11-16 19:24:28 +07:00
11 lines
393 B
TypeScript
11 lines
393 B
TypeScript
|
import React, { forwardRef } from 'react';
|
||
|
import { default as MaterialUIDialogActions, DialogActionsProps } from '@material-ui/core/DialogActions';
|
||
|
|
||
|
type DialogActionsRef = HTMLDivElement;
|
||
|
|
||
|
const DialogActions = forwardRef<DialogActionsRef, DialogActionsProps>(function DialogActions(props, ref) {
|
||
|
return <MaterialUIDialogActions {...props} ref={ref} />;
|
||
|
});
|
||
|
|
||
|
export default DialogActions;
|