@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
10 lines (9 loc) • 327 B
TypeScript
import { ButtonSortProps } from '../ButtonSort';
export interface SortResultsProps {
/** The label text of the sort buttons */
label?: string;
/** An array of sort button objects */
sortButtons: ButtonSortProps[];
}
declare const SortResults: (sortResults: SortResultsProps) => any;
export default SortResults;