UNPKG

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

14 lines (13 loc) 502 B
import { ReactNode, CSSProperties, HTMLProps } from 'react'; import * as React 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): React.JSX.Element; export {};