UNPKG

pagamio-frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

9 lines (8 loc) 291 B
import type { ReactNode } from 'react'; interface AuthCardProps { children: ReactNode; className?: string; horizontal?: boolean; } export declare function AuthCard({ children, className, horizontal }: Readonly<AuthCardProps>): import("react/jsx-runtime").JSX.Element; export {};