UNPKG

tweak-tools

Version:

Tweak your React projects until awesomeness

9 lines (8 loc) 339 B
import React from 'react'; import type { Vector2d } from '../../types'; import type { Vector2dProps } from './vector2d-types'; declare type JoystickProps = { value: Vector2d; } & Pick<Vector2dProps, 'onUpdate' | 'settings'>; export declare function Joystick({ value, settings, onUpdate }: JoystickProps): React.JSX.Element; export {};