react-planet
Version:
A react lib for building circular menus in a very easy and handy way.
15 lines (14 loc) • 407 B
TypeScript
import * as React from "react";
interface Props {
children: React.ReactNode;
on: boolean;
dragable?: boolean;
dragRadius?: number;
bounceRadius?: number;
open?: boolean;
bounceOnOpen?: boolean;
bounceOnClose?: boolean;
bounceDirection?: "TOP" | "BOTTOM" | "LEFT" | "RIGHT";
}
export declare function DragableContainer(props: Props): JSX.Element;
export {};