import * as React from "react"; type Props = { size?: number; color?: string; }; export default function MarkdownIcon({ size = 24, color = "currentColor", }: Props) { return ( ); }