UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

9 lines (8 loc) 270 B
export interface ButtonSortProps { /** The label text of the sort button */ text: string; /** An array of sort button objects */ direction?: "" | "asc" | "dsc"; } declare const ButtonSort: (buttonSort: ButtonSortProps) => any; export default ButtonSort;