funuicss
Version:
React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b
33 lines (32 loc) • 996 B
TypeScript
import React, { ReactNode } from 'react';
interface CardProps {
color?: string;
bg?: string;
width?: string;
height?: string;
minHeight?: string;
minWidth?: string;
margin?: string;
padding?: string;
funcss?: string;
children?: ReactNode;
roundEdge?: boolean;
maxHeight?: string;
maxWidth?: string;
horizontal?: boolean;
flat?: boolean;
id?: string;
header?: ReactNode;
body?: ReactNode;
footer?: ReactNode;
image?: ReactNode;
noGap?: boolean;
shadowless?: boolean;
fab?: ReactNode;
responsiveSmall?: boolean;
responsiveMedium?: boolean;
xl?: boolean;
style?: React.CSSProperties;
}
export default function Card({ color, bg, width, height, minHeight, minWidth, margin, padding, funcss, children, roundEdge, maxHeight, maxWidth, horizontal, id, header, body, footer, noGap, fab, image, shadowless, flat, responsiveMedium, xl, responsiveSmall, style, ...rest }: CardProps): any;
export {};