/* * Copyright (c) 2021 - 2024, Ludvig Lundgren and the autobrr contributors. * SPDX-License-Identifier: GPL-2.0-or-later */ interface IconProps { className?: string; } export const SortIcon = ({ className }: IconProps) => ( ); export const SortUpIcon = ({ className }: IconProps) => ( ); export const SortDownIcon = ({ className }: IconProps) => ( ); export const RingResizeSpinner = ({ className }: IconProps) => ( );