import { Box, Text } from '@wix/design-system'; import React from 'react'; export interface PanelHeaderProps { title: string; subtitle?: string; } export function PanelHeader(props: PanelHeaderProps) { const { title, subtitle } = props; return ( {title} {subtitle && {subtitle}} ); }