@redocly/theme
Version:
Shared UI components lib
11 lines (10 loc) • 407 B
TypeScript
import React from 'react';
import { SortOption } from '../../core/types';
export type CatalogSortButtonProps = {
onSortChange: (sortOption: SortOption | null) => void;
currentSort?: SortOption | null;
};
export declare function CatalogSortButton({ onSortChange, currentSort, }: {
onSortChange: (sortOption: SortOption | null) => void;
currentSort?: SortOption | null;
}): React.JSX.Element;