@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
14 lines (13 loc) • 502 B
TypeScript
import { ReactNode, MouseEvent } from "react";
type Props = {
className?: string;
fullHeight?: boolean;
href?: string;
onClick?: (e: MouseEvent) => void;
padding?: "xxs" | "xs" | "s" | "m" | "l";
children?: React.ReactNode;
error?: string | ReactNode;
warning?: string | ReactNode;
};
export declare const VuiSimpleCard: ({ href, className, fullHeight, padding, children, onClick, error, warning, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};