2021-12-03 19:04:48 +01:00
|
|
|
import React from 'react';
|
2021-12-03 19:46:54 +01:00
|
|
|
import { IconBox } from '@tabler/icons';
|
|
|
|
import { faCaretDown } from "@fortawesome/free-solid-svg-icons";
|
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
|
|
import StyledWrapper from './StyledWrapper';
|
2021-12-03 19:04:48 +01:00
|
|
|
|
|
|
|
const Navbar = () => {
|
|
|
|
return (
|
2021-12-03 19:46:54 +01:00
|
|
|
<StyledWrapper className="px-3 py-2 flex items-center bg-gray-200 justify-center">
|
|
|
|
<IconBox size={22} strokeWidth={1.5}/>
|
|
|
|
<span className="ml-2">My Workspace</span>
|
|
|
|
<FontAwesomeIcon className="ml-2 text-gray-200" icon={faCaretDown} style={{fontSize: 13}}/>
|
|
|
|
</StyledWrapper>
|
2021-12-03 19:04:48 +01:00
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Navbar;
|