@react-three/uikit-default
Version:
Default (shadcn) kit for @react-three/uikit
8 lines (7 loc) • 387 B
TypeScript
import { ContainerRef, ContainerProperties } from '@react-three/uikit';
import { ReactNode, RefAttributes } from 'react';
import { Signal } from '@preact/signals-core';
export type ProgressProperties = {
value?: Signal<number> | number;
} & Omit<ContainerProperties, 'children'>;
export declare const Progress: (props: ProgressProperties & RefAttributes<ContainerRef>) => ReactNode;