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
12 lines (11 loc) • 356 B
TypeScript
import { ReactNode, CSSProperties, HTMLProps } from 'react';
import * as React from 'react';
interface ContainerProps extends HTMLProps<HTMLDivElement> {
children?: ReactNode;
funcss?: string;
margin?: string;
padding?: string;
customStyle?: CSSProperties;
}
declare const Container: React.FC<ContainerProps>;
export default Container;