import clsx from "clsx"; import React from "react"; type Props = React.ComponentProps<"button">; export const LandingDocSearchButton = React.forwardRef< HTMLButtonElement, Props >(function LandingDocSearchButtonComponent({ className, ...props }, ref) { return ( ); });