@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
10 lines (9 loc) • 355 B
TypeScript
import React from "react";
import { FlexProps } from "../Flex";
/** 🧠 Omit variant from Flex to redefine it for Card */
export interface CardProps extends Omit<FlexProps, "variant"> {
variant?: "soft" | "elevated" | "outline" | "glass";
as?: any;
$swipeDirection?: "left" | "right" | null;
}
export declare const Card: React.FC<CardProps>;