UNPKG

quill-component-library

Version:
10 lines (9 loc) 220 B
interface CardProps { onClick: (event: any) => void; imgSrc?: string; imgAlt?: string; header: string; text: string; } declare const Card: (props: CardProps) => JSX.Element; export { Card };