import type { HTMLTag, Polymorphic } from "corvos/plugins/jsx.ts"; export type Props = Polymorphic<{ as: Tag; sticky?: boolean; side?: "25"; min?: "50" | "100" | "200"; fill?: boolean; }>; export const SplitViewPanel = ({ as: Tag = "div" as T, sticky, side, min, fill, class: cls, ...props }: Props) => ( );