UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

22 lines 1.22 kB
import * as React from "react"; import { HTMLMotionProps } from "framer-motion"; interface MenubarProps extends React.HTMLAttributes<HTMLDivElement> { } declare function Menubar({ className, children, ...props }: MenubarProps): import("react/jsx-runtime").JSX.Element; interface MenubarMenuProps { value?: string; children: React.ReactNode; } declare function MenubarMenu({ value, children }: MenubarMenuProps): import("react/jsx-runtime").JSX.Element; interface MenubarTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> { } declare function MenubarTrigger({ className, children, ...props }: MenubarTriggerProps): import("react/jsx-runtime").JSX.Element; interface MenubarContentProps extends HTMLMotionProps<"div"> { } declare function MenubarContent({ className, children, ...props }: MenubarContentProps): import("react/jsx-runtime").JSX.Element; interface MenubarItemProps extends React.HTMLAttributes<HTMLDivElement> { inset?: boolean; } declare function MenubarItem({ className, inset, children, ...props }: MenubarItemProps): import("react/jsx-runtime").JSX.Element; export { Menubar, MenubarMenu, MenubarTrigger, MenubarContent, MenubarItem }; //# sourceMappingURL=menubar.d.ts.map