2021-12-03 19:04:48 +01:00
|
|
|
import React from 'react';
|
2022-01-01 10:07:34 +01:00
|
|
|
import { IconLayoutGrid } from '@tabler/icons';
|
2021-12-03 19:46:54 +01:00
|
|
|
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-10 19:34:00 +01:00
|
|
|
<StyledWrapper className="px-2 py-2 flex items-center">
|
2022-01-02 09:15:13 +01:00
|
|
|
<IconLayoutGrid size={20} strokeWidth={1.5}/>
|
2021-12-03 19:46:54 +01:00
|
|
|
<span className="ml-2">My Workspace</span>
|
2021-12-10 19:34:00 +01:00
|
|
|
<FontAwesomeIcon className="ml-2" icon={faCaretDown} style={{fontSize: 13}}/>
|
2021-12-03 19:46:54 +01:00
|
|
|
</StyledWrapper>
|
2021-12-03 19:04:48 +01:00
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Navbar;
|