forked from sombochea/verdaccio-ui
13 lines
469 B
TypeScript
13 lines
469 B
TypeScript
import React, { forwardRef } from 'react';
|
|
import { default as MaterialUIIconButton, IconButtonProps } from '@material-ui/core/IconButton';
|
|
|
|
type IconButtonRef = HTMLElementTagNameMap['button'];
|
|
|
|
/* eslint-disable verdaccio/jsx-spread */
|
|
// eslint-disable-next-line react/display-name
|
|
const IconButton = forwardRef<IconButtonRef, IconButtonProps>(function IconButton(props, ref) {
|
|
return <MaterialUIIconButton {...props} ref={ref} />;
|
|
});
|
|
|
|
export default IconButton;
|