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
20 lines (19 loc) • 618 B
TypeScript
import * as React from 'react';
type DivProps = {
children?: React.ReactNode;
funcss?: string;
content?: React.ReactNode;
minHeight?: string;
maxHeight?: string;
maxWidth?: string;
minWidth?: string;
height?: string;
width?: string;
padding?: string;
margin?: string;
fit?: boolean;
customStyle?: React.CSSProperties;
onClick?: React.MouseEventHandler<HTMLDivElement>;
};
declare const Div: ({ children, funcss, content, minHeight, maxHeight, maxWidth, minWidth, height, width, padding, margin, fit, customStyle, ...rest }: DivProps) => any;
export default Div;