new styles

This commit is contained in:
User
2025-01-06 20:19:07 +03:00
parent 8b589470ac
commit 847102e843
51 changed files with 8457 additions and 627 deletions

View File

@@ -0,0 +1,17 @@
"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>
)
}