@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
18 lines (17 loc) • 646 B
TypeScript
type Props = {
type?: "full" | "outlined";
header?: React.ReactNode;
body?: React.ReactNode;
align?: "center" | "left" | "right";
className?: string;
interactive?: boolean;
href?: string;
padding?: "xxs" | "xs" | "s" | "m" | "l";
ungrouped?: boolean;
fullHeight?: boolean;
isScrollable?: boolean;
isExpanded?: boolean;
onToggleExpansion?: () => void;
};
export declare const VuiCard: ({ type, header, body, align, interactive, href, className, padding, ungrouped, fullHeight, isScrollable, isExpanded, onToggleExpansion, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};