This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/style/components/search.tsx
2025-01-06 20:19:07 +03:00

18 lines
382 B
TypeScript

"use client"
import { SearchIcon } from 'lucide-react'
import { Input } from "./ui/input"
export function Search() {
return (
<div className="relative w-full max-w-lg">
<SearchIcon className="absolute left-2 top-2.5 h-4 w-4 text-muted-foreground" />
<Input
placeholder="Искать на Store"
className="pl-8 w-full"
/>
</div>
)
}