UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

12 lines (11 loc) 303 B
import React from "react"; interface AuthCardProps { title?: string; subtitle?: string; children: React.ReactNode; background?: "gradient" | "image" | "none"; backgroundImage?: string; logo?: boolean | string; } export declare const AuthCard: React.FC<AuthCardProps>; export {};