1 import type { FC } from 'react';
3 type Props = { title: string; subtitle?: string };
5 export const DropdownMenuLabel: FC<Props> = ({ title, subtitle }) => (
6 <div className="pl-2 lh120">
8 {subtitle && <span className="text-sm color-weak">{subtitle}</span>}