@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
10 lines (9 loc) • 532 B
TypeScript
import { Assign } from '../../types';
import { HTMLProps, PolymorphicProps } from '../factory';
import { UseAngleSliderProps } from './use-angle-slider';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface AngleSliderRootBaseProps extends UseAngleSliderProps, PolymorphicProps {
}
export interface AngleSliderRootProps extends Assign<HTMLProps<'div'>, AngleSliderRootBaseProps> {
}
export declare const AngleSliderRoot: ForwardRefExoticComponent<AngleSliderRootProps & RefAttributes<HTMLDivElement>>;