File size: 410 Bytes
6927c07
 
 
 
ab9d59a
6927c07
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { IconButton } from './ui/IconButton';

export function Header() {
  return (
    <header className="flex items-center bg-white p-4 border-b border-gray-200 h-[var(--header-height)]">
      <div className="flex items-center gap-2">
        <div className="text-2xl font-semibold text-accent">Bolt</div>
      </div>
      <IconButton icon="i-ph:gear-duotone" className="ml-auto" />
    </header>
  );
}