UNPKG

react-ui89

Version:

A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.

9 lines (8 loc) 276 B
import React from "react"; export interface TimeAnimationPropsChildrenProps { now: Date; } export interface TimeAnimationProps { children: (props: TimeAnimationPropsChildrenProps) => React.ReactNode; } export declare const TimeAnimation: React.FC<TimeAnimationProps>;