@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
11 lines (10 loc) • 352 B
TypeScript
import type { PropsFor } from "../../types.js";
export type MenuProps = PropsFor<"div", {
/** Apply a horizontal (inline) layout for child elements. */
horizontal?: boolean;
}>;
declare const Menu: {
({ horizontal, className, ...props }: MenuProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default Menu;