import React, { ReactNode } from 'react'; import { Heading } from './Heading'; import { Text } from './Text'; interface TeamsHeaderProps { title: string; subtitle?: string; action?: ReactNode; } export function TeamsHeader({ title, subtitle, action }: TeamsHeaderProps) { return (
{title}
{subtitle && ( {subtitle} )}
{action && (
{action}
)}
); }