@ultraviolet/plus
Version:
Ultraviolet Plus
14 lines (13 loc) • 474 B
TypeScript
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 {};