@base-ui-components/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.
17 lines (16 loc) • 475 B
TypeScript
export declare enum SelectScrollArrowDataAttributes {
/**
* Indicates the direction of the arrow.
* @type {'up' | 'down'}
*/
direction = "data-direction",
/**
* Present when the arrow is visible.
*/
visible = "data-visible",
/**
* Indicates which side the arrow is positioned relative to the select.
* @type {'none' | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start'}
*/
side = "data-side"
}