feat(HAI-001): complete Step 2 — replace emojis with Lucide icons

This commit is contained in:
Dustin Byrne
2026-03-25 20:31:58 -04:00
parent db2b84c231
commit d8ac565f85
5 changed files with 11 additions and 6 deletions

View File

@@ -1,3 +1,5 @@
import { Settings } from "lucide-react";
interface HeaderProps {
onOpenSettings?: () => void;
}
@@ -11,7 +13,7 @@ export function Header({ onOpenSettings }: HeaderProps) {
</div>
<div className="header-actions">
<button className="btn-icon" onClick={onOpenSettings} title="Settings">
<Settings size={16} />
</button>
</div>
</header>