import type { FC, ReactNode } from 'react' import { classNames } from '../index' import { Typography } from '../typography' export interface WidgetHeaderProps { title: ReactNode children?: ReactNode className?: string } export const WidgetHeader: FC = ({ title, children, className }) => { return (
{title}
{children}
) }