import clsx from 'clsx'; import { PropsWithChildren, ReactNode } from 'react'; import { WidgetIcon } from './WidgetIcon'; interface Props { title: ReactNode; icon: ReactNode; className?: string; } export function WidgetTitle({ title, icon, className, children, }: PropsWithChildren) { return (

{title}

{children}
); }