MultipleChoiceToggleGroup variable
A toolbar primitive that allows you to build an UI with multiple non-exclusive toggle groups, like the bold/italic/underline toggle.
Signature:
MultipleChoiceToggleGroup: React.FC<{
items: {
title: string;
contents: React.ReactNode;
active: boolean;
onChange: (active: boolean) => void;
disabled?: boolean;
}[];
}>