analog-clock-ios-style
Version:
An analog iOS style clock react component with tailwind css
21 lines (18 loc) • 712 B
text/typescript
import React from 'react';
interface AnalogClockProps {
city?: string;
offset?: number;
currentTime: Date;
showToday?: boolean;
bgColorClassName?: string;
textColorClassName?: string;
bgColorHex?: string;
textColorHex?: string;
handColorHex?: string;
handColorClassName?: string;
accentColorHex?: string;
accentColorClassName?: string;
size?: number;
}
declare const AnalogClock: ({ city, offset, currentTime, showToday, bgColorClassName, textColorClassName, bgColorHex, textColorHex, handColorHex, handColorClassName, accentColorHex, accentColorClassName, size, }: AnalogClockProps) => "" | React.JSX.Element;
export { AnalogClock, type AnalogClockProps };