2022-09-13 07:36:00 +00:00
|
|
|
import { Theme } from '@mui/material';
|
2022-08-05 12:07:44 +00:00
|
|
|
import React from 'react';
|
2022-09-13 07:36:00 +00:00
|
|
|
import { makeStyles } from 'tss-react/mui';
|
2022-08-05 12:07:44 +00:00
|
|
|
|
|
|
|
import { isMobileBrowser } from '../../../environment/utils';
|
|
|
|
import Icon from '../../../icons/components/Icon';
|
|
|
|
|
|
|
|
interface IProps {
|
|
|
|
accessibilityLabel: string;
|
|
|
|
icon: Function;
|
|
|
|
onClick: () => void;
|
|
|
|
}
|
|
|
|
|
2022-09-13 07:36:00 +00:00
|
|
|
const useStyles = makeStyles()((theme: Theme) => {
|
2022-08-05 12:07:44 +00:00
|
|
|
return {
|
|
|
|
button: {
|
|
|
|
padding: '2px',
|
|
|
|
backgroundColor: theme.palette.action03,
|
|
|
|
border: 0,
|
|
|
|
outline: 0,
|
|
|
|
borderRadius: `${theme.shape.borderRadius}px`,
|
|
|
|
|
|
|
|
'&:hover': {
|
|
|
|
backgroundColor: theme.palette.ui02
|
|
|
|
},
|
|
|
|
|
|
|
|
'&:active': {
|
|
|
|
backgroundColor: theme.palette.ui03
|
|
|
|
},
|
|
|
|
|
|
|
|
'&.is-mobile': {
|
|
|
|
padding: '10px'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
const ClickableIcon = ({ accessibilityLabel, icon, onClick }: IProps) => {
|
2022-09-13 07:36:00 +00:00
|
|
|
const { classes: styles, cx } = useStyles();
|
2022-08-05 12:07:44 +00:00
|
|
|
const isMobile = isMobileBrowser();
|
|
|
|
|
2022-09-13 07:36:00 +00:00
|
|
|
return (
|
|
|
|
<button
|
|
|
|
aria-label = { accessibilityLabel }
|
|
|
|
className = { cx(styles.button, isMobile && 'is-mobile') }
|
|
|
|
onClick = { onClick }>
|
|
|
|
<Icon
|
|
|
|
size = { 24 }
|
|
|
|
src = { icon } />
|
|
|
|
</button>
|
|
|
|
);
|
2022-08-05 12:07:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default ClickableIcon;
|