UNPKG

pagamio-frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

13 lines (12 loc) 301 B
import React from 'react'; interface CardProps { title?: string; description?: string; children: React.ReactNode; className?: string; showButton?: boolean; buttonText?: string; handleButtonClick?: () => void; } declare const Card: React.FC<CardProps>; export default Card;