1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-17 07:45:52 +01:00
verdaccio/packages/plugins/ui-theme/src/components/InputLabel.tsx
2021-04-15 21:10:49 +02:00

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;