@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
13 lines (12 loc) • 559 B
TypeScript
import { Orientation } from '@zag-js/types';
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
interface ScrollbarProps {
orientation?: Orientation;
}
export interface ScrollAreaScrollbarBaseProps extends ScrollbarProps, PolymorphicProps {
}
export interface ScrollAreaScrollbarProps extends HTMLProps<'div'>, ScrollAreaScrollbarBaseProps {
}
export declare const ScrollAreaScrollbar: ForwardRefExoticComponent<ScrollAreaScrollbarProps & RefAttributes<HTMLDivElement>>;
export {};