0 ? ratio : 1,
...style,
}}
/>
);
}
export function ScrollArea({
label,
maxHeight = 300,
className = "",
style,
...props
}: HTMLAttributes
& {
label: string;
maxHeight?: number | string;
}) {
return (
);
}
export function AppShell({
header,
sidebar,
footer,
children,
mainId = "mizu-main",
mainTag: Main = "main",
className = "",
}: {
header?: ReactNode;
sidebar?: ReactNode;
footer?: ReactNode;
children: ReactNode;
mainId?: string;
mainTag?: "main" | "section";
className?: string;
}) {
return (
);
}