UNPKG

react-wheel-menu

Version:

React components & hooks for building a radial wheel menu

6 lines (5 loc) 300 B
import { ComponentPropsWithoutRef, ElementType } from 'react'; export type WheelProps<T extends ElementType = 'div'> = ComponentPropsWithoutRef<T> & { readonly as?: T; }; export declare function Wheel<T extends ElementType = 'div'>(props: WheelProps<T>): import("react/jsx-runtime").JSX.Element;