import type { ComponentPropsWithRef } from "react" /** * Renders an "X" icon as an SVG React component. * * @param props - Props to spread onto the underlying `svg` element (e.g., className, style, ref). * @returns The SVG element representing the "X" icon with its path filled by `currentColor`. */ export function WeChat(props: ComponentPropsWithRef<"svg">) { return ( ) }