import type { ComponentPropsWithoutRef, ReactNode } from "react";
import { cn } from "./cn";
type IconProps = ComponentPropsWithoutRef<"svg">;
function IconFrame({
children,
className,
viewBox = "0 0 16 16",
...props
}: IconProps & {
children: ReactNode;
viewBox?: string;
}) {
return (
);
}
export function CheckIcon({ className, ...props }: IconProps) {
return (
);
}
export function ChevronDownIcon({ className, ...props }: IconProps) {
return (
);
}
export function ChevronRightIcon({ className, ...props }: IconProps) {
return (
);
}
export function CloseIcon({ className, ...props }: IconProps) {
return (
);
}
export function DotIcon({ className, ...props }: IconProps) {
return (
);
}
export function SortAscendingIcon({ className, ...props }: IconProps) {
return (
);
}
export function SortDescendingIcon({ className, ...props }: IconProps) {
return (
);
}
export function SortUnsortedIcon({ className, ...props }: IconProps) {
return (
);
}
export function SpinnerIcon({ className, ...props }: IconProps) {
return (
);
}