UNPKG

@expofp/floorplan

Version:

Interactive floor plan library for expos and events

28 lines 910 B
import React from "react"; import { type EntityItemAdditionalInfo } from "../ui/EntityItem"; export type EntityItemKind = "booth" | "exhibitor" | "event" | "speaker" | "category"; export interface EntityItemContainerProps { id: string; kind: EntityItemKind; title: string; subtitle?: string; image?: string; icon?: string; itemsCount?: number; date?: string; time?: string; additionalInfo?: EntityItemAdditionalInfo[]; bookmarked?: boolean; featured?: boolean; visited?: boolean; current?: boolean; heatmapColor?: string; accentBorderColor?: string; hideUserState?: boolean; compactDetails?: boolean; secondaryText?: string; onClick?: (id: string) => void; } declare const EntityItemContainer: React.FunctionComponent<EntityItemContainerProps>; export default EntityItemContainer; //# sourceMappingURL=EntityItemContainer.d.ts.map