@prokodo/ui
Version:
UI components for production-grade Next.js + Headless CMS (Strapi, Contentful, Headless WordPress) websites by prokodo – built for Core Web Vitals & SEO.
12 lines (11 loc) • 700 B
TypeScript
import { type LinkProps } from "@/components/link";
import type { CardProps } from "./Card.model";
import type { AnimatedViewProps } from "@/components/animated/Animated.model";
import type { JSX } from "react";
export declare function CardView({ isClickable, variant, loading, skeletonProps, highlight, gradiant, gradiantClassName, enableShadow, animated, customAnimation, className, contentClassName, background, backgroundProps, children, redirect, role, tabIndex, animatedProps, onClick, onKeyDown, onMouseEnter, onMouseLeave, }: CardProps & {
role?: string;
tabIndex?: number;
animationProps?: AnimatedViewProps;
isClickable?: boolean;
redirect?: LinkProps;
}): JSX.Element;