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) • 349 B
TypeScript
import * as React from 'react';
type DropMenuProps = {
children: React.ReactNode;
funcss?: string;
hoverable?: string;
duration?: number;
animation?: string;
id?: string;
width?: string;
};
export default function DropMenu({ children, funcss, hoverable, duration, animation, id, width, }: DropMenuProps): any;
export {};