UNPKG

fictoan-react

Version:

A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.

10 lines (9 loc) 457 B
import React from "react"; import { CommonAndHTMLProps } from '../Element/constants'; export type CardElementType = HTMLDivElement; export interface CardCustomProps { heading?: string; } export type CardProps = CommonAndHTMLProps<CardElementType> & CardCustomProps; export declare const Card: React.ForwardRefExoticComponent<CommonAndHTMLProps<HTMLDivElement> & CardCustomProps & React.RefAttributes<HTMLDivElement>>; //# sourceMappingURL=Card.d.ts.map