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 = 0, name, length = 100, oppositeLength = 10, width = 1, }: HandProps): React.ReactElement { return (
); }