@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
15 lines (14 loc) • 519 B
TypeScript
import React from 'react';
import { CardProps } from '@mui/material';
export interface CardFlexModel extends Omit<CardProps, 'component' | 'style' | 'borderRadius' | 'border' | 'ref' | 'color'> {
borderRadius?: string;
border?: string;
shadow?: string;
padding?: string;
style?: React.CSSProperties;
disabledHover?: boolean;
backgroundColor?: string;
hoverStyle?: 'shadow' | 'border';
component?: React.ElementType<any>;
}
export declare const CardFlexible: React.FC<CardFlexModel>;