react-clock
Version:
An analog clock for your React app.
11 lines (10 loc) • 354 B
TypeScript
import type { HandLength, HandWidth, OppositeHandLength } from './shared/types.js';
type HandProps = {
angle?: number;
length?: HandLength;
name: string;
oppositeLength?: OppositeHandLength;
width?: HandWidth;
};
export default function Hand({ angle, name, length, oppositeLength, width, }: HandProps): React.ReactElement;
export {};