UNPKG

@roochnetwork/rooch-sdk-kit

Version:
10 lines (9 loc) 292 B
import { ReactNode } from 'react'; type CardProps = { header?: string; headerRight?: string; children: ReactNode; footer?: ReactNode; }; export declare function Card({ header, headerRight, children, footer }: CardProps): import("react/jsx-runtime.js").JSX.Element; export {};