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
13 lines (12 loc) • 456 B
TypeScript
import { ReactNode, CSSProperties, HTMLProps } from 'react';
interface GridProps extends HTMLProps<HTMLDivElement> {
children?: ReactNode;
funcss?: string;
gap?: number;
justify?: CSSProperties['justifyContent'];
align?: CSSProperties['alignItems'];
id?: string;
direction?: CSSProperties['flexDirection'];
}
export default function Grid({ children, funcss, justify, align, id, direction, ...rest }: GridProps): any;
export {};