Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | import React, { ReactNode } from 'react';
import { Box, ButtonBase, useTheme } from '@mui/material';
import { useDeviceInfo } from '../../utils';
import Icon from '../Icon/Icon';
import './styles.scss';
export interface Props {
children: ReactNode;
setShowNavBar: React.Dispatch<React.SetStateAction<boolean>>;
backgroundTransparent?: boolean;
}
export default function Navbar(props: Props): JSX.Element {
const { children, setShowNavBar, backgroundTransparent } = props;
const { isDesktop } = useDeviceInfo();
const theme = useTheme();
return (
<div className={'navbar' + (backgroundTransparent ? ' transparent' : '')}>
{!isDesktop && (
<Box sx={{ display: 'flex', justifyContent: 'start' }}>
<ButtonBase
onClick={() => setShowNavBar(false)}
sx={{
background: 'none',
border: 'none',
cursor: 'pointer',
}}
>
<Icon
name='close'
size='medium'
style={{
fill: theme.palette.TwClrIcnSecondary,
marginRight: '16px',
marginBottom: '8px',
}}
/>
</ButtonBase>
</Box>
)}
{children}
</div>
);
}
|