import { IconProps } from "@radix-ui/react-icons/dist/types"; import * as React from "react"; // Two diagonal arrows (↖ and ↘) for resize/drag indication export const ArrowsTopLeftBottomRightIcon = React.memo( function ArrowsTopLeftBottomRightIcon({ color = "currentColor", ...props }: IconProps) { return ( ); } );