16 lines
403 B
TypeScript
16 lines
403 B
TypeScript
"use client"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { EditIcon } from "@/components/Icons"
|
|
import Button from "@/components/TempDesignSystem/Button"
|
|
|
|
export default function ManageBooking() {
|
|
const intl = useIntl()
|
|
return (
|
|
<Button intent="text" size="small" theme="base" variant="icon" wrapping>
|
|
<EditIcon />
|
|
{intl.formatMessage({ id: "Manage booking" })}
|
|
</Button>
|
|
)
|
|
}
|