@expofp/floorplan
Version:
Interactive floor plan library for expos and events
11 lines • 514 B
TypeScript
import './ShowMoreButton.scss';
import React from 'react';
export interface ShowMoreButtonProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'aria-expanded' | 'type'> {
expanded: boolean;
showMoreLabel: string;
showLessLabel: string;
suffix?: React.ReactNode;
}
declare function ShowMoreButton({ expanded, showMoreLabel, showLessLabel, className, suffix, ...props }: ShowMoreButtonProps): React.JSX.Element;
export default ShowMoreButton;
//# sourceMappingURL=ShowMoreButton.d.ts.map