UNPKG

@edancerys/ts-react-components-lib

Version:
23 lines (22 loc) 526 B
import React from 'react'; export interface BookingCardProps { links?: LinkProps[]; margin?: string; padding?: string; maxWidth?: string; minHeight?: string; height?: string; width?: string; backgroundColor?: string; border?: string; borderRadius?: string; hasIndicator?: boolean; gap?: string; className?: string; } interface LinkProps { title?: string; url?: string; } export declare const BookingCard: React.FC<BookingCardProps>; export {};