quill-component-library
Version:
A library for components shared between Quill apps.
14 lines (13 loc) • 329 B
TypeScript
import React from 'react';
interface CardProps {
onClick: (event: any) => void;
imgSrc?: string;
imgAlt?: string;
header: string;
text: string;
}
export declare class Card extends React.Component<CardProps, {}> {
handleKeyDownOnCard: (e: any) => void;
render(): JSX.Element;
}
export {};