1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-23 19:54:49 +07:00
verdaccio-ui/src/muiComponents/CardActions/CardActions.tsx

11 lines
385 B
TypeScript
Raw Normal View History

import React, { forwardRef } from 'react';
import { default as MaterialUICardActions, CardActionsProps } from '@material-ui/core/CardActions';
type CardActionsRef = HTMLDivElement;
const CardActions = forwardRef<CardActionsRef, CardActionsProps>(function CardContentActions(props, ref) {
return <MaterialUICardActions {...props} innerRef={ref} />;
});
export default CardActions;