UNPKG

@ultraviolet/plus

Version:
14 lines (13 loc) 474 B
import type { AnchorHTMLAttributes, ElementType, ReactNode } from 'react'; type CardProps = { title?: string; titleAs?: ElementType; subtitle?: string; subtitleAs?: ElementType; description?: string; children?: ReactNode; href: string; target?: AnchorHTMLAttributes<HTMLAnchorElement>['target']; }; export declare const Card: import("react").ForwardRefExoticComponent<CardProps & import("react").RefAttributes<HTMLAnchorElement>>; export {};