import clsx from 'clsx'; import SortDownIcon from './sort-arrow-down.svg?c'; import SortUpIcon from './sort-arrow-up.svg?c'; import styles from './TableHeaderSortIcons.module.css'; interface Props { sorted: boolean; descending: boolean; className?: string; } export function TableHeaderSortIcons({ sorted, descending, className }: Props) { return (
); }