18 lines
382 B
TypeScript
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>
|
|
)
|
|
}
|
|
|