import type { ComponentPropsWithRef } from "react" /** * Render the Reddit logo as an SVG icon. * * @param props - Props forwarded to the root `` element (e.g., className, style, aria-*, ref) * @returns The SVG element representing the Reddit logo with provided props applied */ export function Reddit(props: ComponentPropsWithRef<"svg">) { return ( ) }