Fortune-PlayLogic/components/betting/search-event.tsx
“kirukib” c471aa30d4 first
2026-02-18 16:01:12 +03:00

20 lines
562 B
TypeScript

import { Input } from "@/components/ui/input"
export function SearchEvent() {
return (
<div className="space-y-1 rounded-md border bg-card/60 p-3">
<div className="text-[11px] font-medium uppercase tracking-wide text-muted-foreground">
Search Event
</div>
<p className="text-[11px] text-muted-foreground">
Insert the events name or at least one team in the form below
</p>
<Input
placeholder="Search by event or team"
className="h-8 text-xs placeholder:text-[11px]"
/>
</div>
)
}