// biome-ignore lint/style/useImportType: import React from "react"; import { useMoonSDK } from "../../../hooks/old/useMoonSDK"; export type InputProps = { label?: string; } & React.InputHTMLAttributes; export function Input({ label, ...rest }: InputProps) { const { authConfig } = useMoonSDK(); return (
{label && ( )}
); }