chore: SW-3145 Moved tempdesign button to design-system * chore: SW-3145 Moved tempdesign button to design-system Approved-by: Anton Gunnarsson
23 lines
588 B
TypeScript
23 lines
588 B
TypeScript
"use client"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon"
|
|
import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton"
|
|
|
|
export default function AddToCalendarButton({
|
|
onPress,
|
|
}: {
|
|
onPress: () => void
|
|
}) {
|
|
const intl = useIntl()
|
|
|
|
return (
|
|
<Button intent="text" size="small" theme="base" wrapping onPress={onPress}>
|
|
<MaterialIcon icon="calendar_add_on" color="CurrentColor" />
|
|
{intl.formatMessage({
|
|
defaultMessage: "Add to calendar",
|
|
})}
|
|
</Button>
|
|
)
|
|
}
|