Optimize sidebar collapsing

This commit is contained in:
Gregory Schier
2024-12-23 05:05:04 -08:00
parent 61d094d9fd
commit 31f2bff0f6
35 changed files with 402 additions and 238 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ import { Icon } from './Icon';
export type RadioDropdownItem<T = string | null> =
| {
type?: 'default';
label: string;
label: ReactNode;
shortLabel?: string;
value: T;
rightSlot?: ReactNode;