UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

14 lines 578 B
import React, { ReactNode } from 'react'; type BasePortalCardProps = { children?: ReactNode; contentBelowCard?: ReactNode; borderRadiusPx?: number; boxShadow?: string; cardSize?: 'small' | 'medium' | 'large'; backgroundImage?: string; backgroundColor?: string; className?: string; }; declare const BasePortalCard: ({ borderRadiusPx, boxShadow, children, contentBelowCard, cardSize, className, backgroundImage, backgroundColor, }: BasePortalCardProps) => React.ReactNode; export default BasePortalCard; //# sourceMappingURL=BasePortalCard.d.ts.map