UNPKG

@expofp/floorplan

Version:

Interactive floor plan library for expos and events

13 lines 532 B
import './EventBadge.scss'; export type EventBadgeStatus = 'live' | 'upcoming' | 'starting-soon' | 'past' | 'none'; export interface EventBadgeProps { status: EventBadgeStatus; statusLabel?: string; showFullBadge?: boolean; fullLabel: string; isUrgent?: boolean; className?: string; } declare const EventBadge: ({ status, statusLabel, showFullBadge, fullLabel, isUrgent, className, }: EventBadgeProps) => import("react").JSX.Element | null; export default EventBadge; //# sourceMappingURL=EventBadge.d.ts.map