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