({ children, className }: HeaderProps)
| 6 | } |
| 7 | |
| 8 | export const Header = ({ children, className }: HeaderProps) => { |
| 9 | return ( |
| 10 | <header |
| 11 | className={cn( |
| 12 | "sticky top-0 z-50 flex w-full items-center justify-between border-[var(--color-border)] border-b bg-[var(--color-background)] px-4 py-4 lg:px-8", |
| 13 | className |
| 14 | )} |
| 15 | > |
| 16 | {children} |
| 17 | </header> |
| 18 | ) |
| 19 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…