UNPKG

zmp-react

Version:

Build full featured iOS & Android apps using ZMP & React

17 lines (12 loc) 334 B
import * as React from 'react'; interface CardProps { slot?: string; className?: string; style?: React.CSSProperties; title?: string; inset?: boolean; ref?: React.MutableRefObject<{el: HTMLElement | null}>; children?: React.ReactNode; } declare const Card: React.FunctionComponent<CardProps>; export default Card;