UNPKG

compote-ui

Version:

An opinionated UI component library for Svelte, built on top of [Ark UI](https://ark-ui.com) with additional components and features not available in the core Ark UI library.

8 lines (7 loc) 268 B
import type { HTMLAttributes } from 'svelte/elements'; type Props = HTMLAttributes<HTMLElement> & { expanded?: boolean; }; declare const NavRail: import("svelte").Component<Props, {}, "expanded">; type NavRail = ReturnType<typeof NavRail>; export default NavRail;