UNPKG

@wulperstudio/cms

Version:
13 lines (12 loc) 355 B
import React from 'react'; export interface CardImageModel { /** Set variant */ variant?: 'fixed' | 'float'; /** Set any url for the image */ urlImage?: string; /** Set title for the card */ title: string; /** Set the card component */ children: React.ReactNode; } export declare const CardImage: React.FC<CardImageModel>;