interface DateRangeCellProps {
    showTime?: boolean;
    sinceDate?: null | string;
    sinceFallback?: string;
    untilDate?: null | string;
    untilFallback?: string;
    verticalPadding?: "12" | "24";
}

Hierarchy (view full)

Properties

showTime?: boolean

Whether this should show the time info on the date string

sinceDate?: null | string

An ISO date for the starting range of the item

sinceFallback?: string

Fallback when the since date is not provided

untilDate?: null | string

An ISO date for the ending range of the item

untilFallback?: string

Fallback when the until date is not provided

verticalPadding?: "12" | "24"

Padding size for the cell

Generated using TypeDoc