UNPKG

react-clock

Version:

An analog clock for your React app.

10 lines (9 loc) 234 B
import type { MarkLength, MarkWidth } from './shared/types.js'; type MarkProps = { angle?: number; length?: MarkLength; name: string; width?: MarkWidth; }; declare const Mark: React.FC<MarkProps>; export default Mark;