import * as React from "react"; export const CheckboxIcon = React.forwardRef< SVGSVGElement, React.ComponentPropsWithoutRef<"svg"> >(function Checkbox(props, ref) { return ( ); }); export const IndeterminateIcon = React.forwardRef< SVGSVGElement, React.ComponentPropsWithoutRef<"svg"> >(function Indeterminate(props, ref) { return ( ); }); export const SortIcon = React.forwardRef< SVGSVGElement, React.ComponentPropsWithoutRef<"svg"> & { direction: "asc" | "desc" | "none" } >(function Indeterminate({ className, direction = "none", ...props }, ref) { return ( ); });