UNPKG

lightswind

Version:

A professionally designed animate react component library & templates market that brings together functionality, accessibility, and beautiful aesthetics for modern applications.

22 lines (21 loc) 1.18 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, };