mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
added profile sidebar just to test if I can
This commit is contained in:
parent
b4edba1beb
commit
d9a1b5cf13
10 changed files with 209 additions and 10 deletions
21
src/components/profile/ProfileSidebarMenu/index.tsx
Normal file
21
src/components/profile/ProfileSidebarMenu/index.tsx
Normal file
|
@ -0,0 +1,21 @@
|
|||
import React, { FC } from 'react';
|
||||
import styles from './styles.module.scss';
|
||||
import { Icon } from '~/components/input/Icon';
|
||||
|
||||
interface IProps {}
|
||||
|
||||
const ProfileSidebarMenu: FC<IProps> = () => (
|
||||
<div className={styles.wrap}>
|
||||
<div className={styles.row}>
|
||||
<Icon icon="settings" />
|
||||
<span>Настройки</span>
|
||||
</div>
|
||||
|
||||
<div className={styles.row}>
|
||||
<Icon icon="messages" />
|
||||
<span>Сообщения</span>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
export { ProfileSidebarMenu };
|
Loading…
Add table
Add a link
Reference in a new issue