import { IconProps } from "@radix-ui/react-icons/dist/types"; import * as React from "react"; // Simple Markdown icon: rounded rectangle with an 'M' inside export const MarkdownIcon = React.memo(function MarkdownIcon({ color = "currentColor", ...props }: IconProps) { return ( {/* Container */} {/* M letter */} {/* Tiny down arrow on the right side (outlined with stem) */} ); });