Switches out all the old icons to new ones, and moves them to the design system. The new icons are of three different types: Materialise Symbol, Nucleo, and Customized. Also adds further mapping between facilities/amenities and icons. Approved-by: Michael Zetterberg Approved-by: Erik Tiekstra
41 lines
1002 B
TypeScript
41 lines
1002 B
TypeScript
"use client"
|
|
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { MaterialIcon } from "@scandic-hotels/design-system/Icons"
|
|
|
|
import Button from "@/components/TempDesignSystem/Button"
|
|
import { toast } from "@/components/TempDesignSystem/Toasts"
|
|
|
|
import styles from "./copybutton.module.css"
|
|
|
|
import type { CopyButtonProps } from "@/types/components/myPages/membership"
|
|
|
|
export default function CopyButton({ membershipNumber }: CopyButtonProps) {
|
|
const intl = useIntl()
|
|
|
|
function handleCopy() {
|
|
try {
|
|
navigator.clipboard.writeText(membershipNumber)
|
|
toast.success(
|
|
intl.formatMessage({ id: "Membership ID copied to clipboard" })
|
|
)
|
|
} catch {
|
|
toast.error(intl.formatMessage({ id: "Failed to copy" }))
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Button
|
|
onClick={handleCopy}
|
|
className={styles.button}
|
|
type="button"
|
|
variant="icon"
|
|
size="small"
|
|
intent="tertiary"
|
|
>
|
|
<MaterialIcon icon="content_copy" color="CurrentColor" />
|
|
</Button>
|
|
)
|
|
}
|