import * as React from "react"; type Props = { /** The size of the icon, 24px is default to match standard icons */ size?: number; /** The color of the icon, defaults to the current text color */ fill?: string; className?: string; }; function DiscordLogo({ size = 24, fill = "currentColor", className }: Props) { return ( ); } export default DiscordLogo;