"use client" import { Search, SlidersHorizontal } from "lucide-react" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { cn } from "@/lib/utils" interface MailSearchBarProps { className?: string /** Split-pane column: balanced icon inset inside the pill. */ compact?: boolean } export function MailSearchBar({ className, compact = false }: MailSearchBarProps) { return (
) }