@react-three/uikit-apfel
Version:
Apfel kit for @react-three/uikit
7 lines (6 loc) • 305 B
TypeScript
import { ContainerRef, ContainerProperties } from '@react-three/uikit';
import { ReactNode, RefAttributes } from 'react';
export type ProgressProperties = ContainerProperties & {
value?: number;
};
export declare const Progress: (props: ProgressProperties & RefAttributes<ContainerRef>) => ReactNode;