11 lines
291 B
TypeScript
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>
|
|
);
|
|
}
|