"use client" import { Typography } from "@scandic-hotels/design-system/Typography" import styles from "./benefitCards.module.css" type BenefitCardProps = { Icon: React.ComponentType<{ width?: number height?: number className?: string }> title: string description: string } export default function BenefitCard({ Icon, title, description, }: BenefitCardProps) { return (
{description}