-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathToolbarButton.js
63 lines (53 loc) · 1.53 KB
/
ToolbarButton.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import React, { forwardRef } from 'react'
import { styled } from '@mui/material/styles'
import { IconButton } from '@mui/material'
import PropTypes from 'prop-types'
const PREFIX = 'RSFToolbarButton'
const defaultClasses = {
wrap: `${PREFIX}-wrap`,
}
const StyledIconButton = styled(IconButton)(({ theme }) => ({
/**
* Styles applied to the content wrapper element inside the button
*/
[`& .${defaultClasses.wrap}`]: {
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
...theme.typography.caption,
},
}))
export {}
/**
* A toolbar button with optional label. Use these in your AppBar. All additional
* props are spread to the underlying mui IconButton.
*/
const ToolbarButton = forwardRef(({ icon, label, children, classes: c = {}, ...others }, ref) => {
const classes = { ...defaultClasses, ...c }
const { wrap, ...buttonClasses } = classes
return (
<StyledIconButton ref={ref} classes={buttonClasses} {...others} size="large">
<div className={classes.wrap}>
{icon}
<div>{label}</div>
</div>
{children}
</StyledIconButton>
)
})
ToolbarButton.propTypes = {
/**
* Override or extend the styles applied to the component. See [CSS API](#css) below for more details.
*/
classes: PropTypes.object,
/**
* The icon to use for the button.
*/
icon: PropTypes.element,
/**
* The label text for the button.
*/
label: PropTypes.oneOfType([PropTypes.string, PropTypes.element]),
}
export default ToolbarButton