import { IconProps } from "@radix-ui/react-icons/dist/types"; import * as React from "react"; /** Figma-style component glyph: four diamonds around the center. */ export const ComponentIcon = React.memo(function ComponentIcon({ color = "currentColor", ...props }: IconProps) { return ( ); });