import { Typography } from "@scandic-hotels/design-system/Typography" interface TrProps { subtitle?: string title: string } export default function HeaderRow({ subtitle, title }: TrProps) { return ( <> {title} {subtitle ? ( {subtitle} ) : null} ) }