synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
14 lines • 578 B
TypeScript
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