mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-23 04:19:48 +00:00
Add header component
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import styled from 'styled-components';
|
||||
import ButtonIcon from './ButtonIcon';
|
||||
import { IoPersonCircleOutline } from 'react-icons/io5';
|
||||
import { HiOutlineLogout } from 'react-icons/hi';
|
||||
|
||||
const StyledHeaderMenu = styled.ul`
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
`;
|
||||
|
||||
const HeaderMenu = () => {
|
||||
return (
|
||||
<StyledHeaderMenu>
|
||||
<ButtonIcon>
|
||||
<IoPersonCircleOutline />
|
||||
</ButtonIcon>
|
||||
<ButtonIcon>
|
||||
<HiOutlineLogout />
|
||||
</ButtonIcon>
|
||||
</StyledHeaderMenu>
|
||||
);
|
||||
};
|
||||
|
||||
export default HeaderMenu;
|
||||
Reference in New Issue
Block a user