@replyke/ui-core-react-native
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
11 lines (10 loc) • 444 B
TypeScript
export type FontWeight = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900";
declare function FromNow({ time, fontSize, fontWeight, color, lean, justNowText, }: {
time: Date | string;
fontSize?: number;
fontWeight?: number;
color?: string;
lean?: boolean;
justNowText?: string;
}): import("react/jsx-runtime").JSX.Element;
export default FromNow;