@expofp/floorplan
Version:
Interactive floor plan library for expos and events
15 lines • 513 B
TypeScript
import './SimpleRow.scss';
import type { CSSProperties, ReactNode } from 'react';
export interface SimpleRowProps {
title: ReactNode;
subtitle: string;
trailing?: string;
slug: string;
active?: boolean;
className?: string;
style?: CSSProperties;
onClick: () => void;
}
declare const SimpleRow: ({ title, subtitle, trailing, slug, style, className, active, onClick, }: SimpleRowProps) => import("react").JSX.Element;
export default SimpleRow;
//# sourceMappingURL=SimpleRow.d.ts.map