feat(WEB-162): final design edit profile page
This commit is contained in:
committed by
Christel Westerberg
parent
5f3e417593
commit
d84efcbb0f
6
components/Profile/Header/header.module.css
Normal file
6
components/Profile/Header/header.module.css
Normal file
@@ -0,0 +1,6 @@
|
||||
.header {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
gap: var(--Spacing-x2);
|
||||
justify-content: space-between;
|
||||
}
|
||||
5
components/Profile/Header/index.tsx
Normal file
5
components/Profile/Header/index.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import styles from "./header.module.css"
|
||||
|
||||
export default function Header({ children }: React.PropsWithChildren) {
|
||||
return <header className={styles.header}>{children}</header>
|
||||
}
|
||||
Reference in New Issue
Block a user