@visa/nova-react
Version:
Visa Product Design System Nova React library
24 lines (23 loc) • 976 B
TypeScript
import { ElementType, ForwardedRef } from 'react';
export type ContentCardProperties = {
/** Show bottom border on content card */
borderBlockEnd?: boolean;
/** @ignore */
className?: string;
/** Card Clickable */
clickable?: boolean;
/** Tag of Component */
tag?: ElementType;
};
/**
* Compact displays summarizing or directing users to more information.
* @docs {@link https://design.visa.com/react/components/content-card | See Docs}
* @related content-card-body, content-card-image, content-card-subtitle, content-card-title
* @vgar TODO
* @wcag TODO
*/
declare const _default: <HTMLElementType = HTMLDivElement>(props: {
children?: import("react").ReactNode | import("react").ReactNode[];
ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & ContentCardProperties) => import("react").ReactElement;
export default _default;