import { Button, type ButtonProps } from '@radix-ui/themes'; import { LoaderCircle } from 'lucide-react'; export type SubmitButtonProps = { loading?: boolean; label?: | { default?: string; loading?: string; } | string; } & React.ButtonHTMLAttributes & ButtonProps; export function SubmitButton({ loading, label, ...props }: SubmitButtonProps) { return ( ); } export function ResetButton(props: React.ButtonHTMLAttributes) { return ( ); }