Sha256: 2fb41bf598428d0c6215dca57e5025c944dcadbb2e6fc9d3e11dcd19e090299f
Contents?: true
Size: 447 Bytes
Versions: 2
Compression:
Stored size: 447 Bytes
Contents
import { GlobalProps } from "../utilities/globalProps"; declare type TimeProps = { align?: "left" | "center" | "right"; className?: string | string[]; data?: string; date: Date; dark?: boolean; id?: string; showIcon?: boolean; size?: "md" | "sm"; showTimezone?: boolean; timeZone?: string; unstyled?: boolean; } & GlobalProps; declare const Time: (props: TimeProps) => JSX.Element; export default Time;
Version data entries
2 entries across 2 versions & 1 rubygems