@redocly/theme
Version:
Shared UI components lib
13 lines (12 loc) • 507 B
TypeScript
import React from 'react';
import type { ButtonVariant, ButtonSize } from '../../components/Button/Button';
export type LoginButtonProps = {
href: string;
className?: string;
variant?: ButtonVariant;
size?: ButtonSize;
label?: string;
labelTranslationKey?: string;
['data-component-name']?: string;
};
export declare function LoginButton({ href, className, variant, size, label, labelTranslationKey, 'data-component-name': componentName, }: LoginButtonProps): React.JSX.Element;