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
15 lines (14 loc) • 470 B
TypeScript
import * as React from 'react';
interface RowFlexProps {
funcss?: string;
content?: React.ReactNode;
justify?: string;
gap?: number;
alignItems?: string;
responsiveSmall?: boolean;
responsiveMedium?: boolean;
id?: string;
children?: React.ReactNode;
}
export default function RowFlex({ funcss, content, justify, gap, alignItems, responsiveSmall, responsiveMedium, id, children, ...rest }: RowFlexProps): React.JSX.Element;
export {};