19 lines
350 B
TypeScript
19 lines
350 B
TypeScript
"use client"
|
|
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { SearchIcon } from "@/components/Icons"
|
|
|
|
import Button from "../Button"
|
|
|
|
export default function Search() {
|
|
const intl = useIntl()
|
|
|
|
return (
|
|
<Button>
|
|
<SearchIcon width={20} height={20} color="burgundy" />
|
|
{intl.formatMessage({ id: "Find booking" })}
|
|
</Button>
|
|
)
|
|
}
|