mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-17 07:45:52 +01:00
11 lines
365 B
TypeScript
11 lines
365 B
TypeScript
import { default as MaterialUIInputLabel, InputLabelProps } from '@material-ui/core/InputLabel';
|
|
import React, { forwardRef } from 'react';
|
|
|
|
type InputLabelRef = HTMLLabelElement;
|
|
|
|
const InputLabel = forwardRef<InputLabelRef, InputLabelProps>(function InputLabel(props, ref) {
|
|
return <MaterialUIInputLabel {...props} ref={ref} />;
|
|
});
|
|
|
|
export default InputLabel;
|