UNPKG

@base-ui/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

18 lines 548 B
import type { BaseUIComponentProps, Orientation } from "../../internals/types.mjs"; export interface ListboxSeparatorProps extends BaseUIComponentProps<'div', ListboxSeparatorState> { /** * The orientation of the separator. * @default 'horizontal' */ orientation?: Orientation | undefined; } export interface ListboxSeparatorState { /** * The orientation of the separator. */ orientation: Orientation; } export declare namespace ListboxSeparator { type Props = ListboxSeparatorProps; type State = ListboxSeparatorState; }