2024-12-16 21:34:02 +03:00

11 lines
291 B
TypeScript

import { Profile } from './profile';
export function Header() {
return (
<header className="flex items-center justify-between border-b bg-background px-4 py-2">
<div />
<Profile fallback="SC" src="https://github.com/shadcn.png" username="Username" />
</header>
);
}