UNPKG

@clerk/clerk-js

Version:
10 lines (9 loc) 437 B
import { Button, Icon } from '../customizables'; import type { PropsOfComponent } from '../styledSystem'; type PreviewButtonProps = Omit<PropsOfComponent<typeof Button>, 'icon'> & { icon?: React.ComponentType; iconProps?: Omit<PropsOfComponent<typeof Icon>, 'icon'>; showIconOnHover?: boolean; }; export declare const PreviewButton: (props: PreviewButtonProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};