UNPKG

@backstage-community/plugin-sonarqube

Version:
20 lines (17 loc) 543 B
import { jsx } from 'react/jsx-runtime'; import { makeStyles } from '@material-ui/core/styles'; import Typography from '@material-ui/core/Typography'; const useStyles = makeStyles((theme) => { return { value: { fontSize: "1.5rem", fontWeight: theme.typography.fontWeightMedium } }; }); const Value = (props) => { const classes = useStyles(); return /* @__PURE__ */ jsx(Typography, { component: "span", className: classes.value, children: props.value }); }; export { Value }; //# sourceMappingURL=Value.esm.js.map