import React from 'react'; import { Button } from './ui/button'; export interface JoinWaitlistButtonProps extends React.ButtonHTMLAttributes { lowerPathColor?: string; upperPathColor?: string; buttonBackgroundColor?: string; buttonTextColor?: string; loading?: boolean; } export const JoinWaitlistButton = React.forwardRef( ({ className, lowerPathColor, upperPathColor, buttonBackgroundColor, buttonTextColor, children, ...props }, ref) => { return ( ); } ); JoinWaitlistButton.displayName = "JoinWaitlistButton";