import type { SVGProps } from "react"; export interface GripHrIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function GripHrIcon({ className = "", size = 24, color = "currentColor", ...props }: GripHrIconProps) { return ( ); }