import type { SVGProps } from 'react' type Props = SVGProps & { sorted: 'asc' | 'desc' | false } export const CaretSortIcon = ({ sorted, ...props }: Props) => ( )