import { IconProps } from "@radix-ui/react-icons/dist/types"; import * as React from "react"; /** * Vertical-align-middle: arrows converging on a horizontal center line * (Figma's "align middle" metaphor — unambiguous next to the pin-top and * pin-bottom icons). */ export const TextVerticalMiddleIcon = React.memo( function TextVerticalMiddleIcon({ color = "currentColor", ...props }: IconProps) { return ( ); } );