import type { ComponentType, HTMLAttributes, PropsWithChildren } from 'react';
import { LABEL } from '../Text';
type SidebarTitleProps = {
Icon?: ComponentType>;
} & PropsWithChildren;
export const SidebarTitle = ({ children, Icon }: SidebarTitleProps) => (
{Icon && }
);