@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 451 B
TypeScript
import { ViewProps } from '@zag-js/progress';
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface ProgressViewBaseProps extends ViewProps, PolymorphicProps {
}
export interface ProgressViewProps extends HTMLProps<'span'>, ProgressViewBaseProps {
}
export declare const ProgressView: ForwardRefExoticComponent<ProgressViewProps & RefAttributes<HTMLSpanElement>>;