-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathLabel.js
37 lines (32 loc) · 910 Bytes
/
Label.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import PropTypes from 'prop-types'
import { styled } from '@mui/material/styles'
import React from 'react'
import clsx from 'clsx'
import { Typography } from '@mui/material'
const PREFIX = 'RSFLabel'
const defaultClasses = {
root: `${PREFIX}-root`,
}
const StyledTypography = styled(Typography)(() => ({
/**
* Styles applied to the root element\.
*/
[`&.${defaultClasses.root}`]: {
fontWeight: 500,
marginRight: 10,
},
}))
export default function Label({ className, classes: c = {}, ...props }) {
const classes = { ...defaultClasses, ...c }
return <StyledTypography {...props} className={clsx(className, classes.root)} />
}
Label.propTypes = {
/**
* Override or extend the styles applied to the component. See [CSS API](#css) below for more details.
*/
classes: PropTypes.object,
/**
* CSS class to apply to the root element
*/
className: PropTypes.string,
}