UNPKG

@veecode-platform/plugin-kong-service-manager

Version:

24 lines (21 loc) 477 B
import React from 'react'; import { makeStyles, StepLabel } from '@material-ui/core'; const useStyles = makeStyles({ labelWrapper: { width: "30%", textTransform: "uppercase" } }); const LabelField = (props) => { const { title } = props; const { labelWrapper } = useStyles(); return /* @__PURE__ */ React.createElement( StepLabel, { className: labelWrapper }, title ); }; export { LabelField }; //# sourceMappingURL=Fields.esm.js.map