13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
import { SearchIcon } from "@/components/Icons"
|
|
|
|
import Button from "../Button"
|
|
|
|
export default function Search() {
|
|
return (
|
|
<Button>
|
|
<SearchIcon width={20} height={20} color="burgundy" />
|
|
<span>Find Booking</span>
|
|
</Button>
|
|
)
|
|
}
|