import React, { ReactNode } from 'react' import { cycleSortDirection, SortDirection } from '../hooks/use-order-by' import classNames from 'classnames' export const SortButton = ({ children, toggleSort, sortDirection }: { children: ReactNode toggleSort: () => void sortDirection: SortDirection | null }) => { const next = cycleSortDirection(sortDirection) return ( ) }