@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
13 lines (12 loc) • 355 B
TypeScript
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>;