UNPKG

pagamio-frontend-commons-lib

Version:

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

10 lines (9 loc) 221 B
import React from 'react'; interface CardProps { title?: string; children: React.ReactNode; onOpenDetails?: () => void; themeColor?: string; } declare const Card: React.FC<CardProps>; export default Card;