export interface IDisplayDateProps { /** * The date to display. */ date: Date; /** * Display the year? */ year?: boolean; /** * Display the full year? Overrides the year prop. * @default true */ fullYear?: boolean; /** * Display the month? * @default true */ month?: boolean; /** * Display the day? * @default true */ day?: boolean; /** * Display the hours? * @default true */ hours?: boolean; /** * Display the minutes? * @default true */ minutes?: boolean; /** * Display the seconds? * @default false */ seconds?: boolean; }