@etsoo/materialui
Version:
TypeScript Material-UI Implementation
20 lines (19 loc) • 590 B
TypeScript
import { StackProps } from "@mui/material/Stack";
/**
* Horizonal box
* @param props Props
* @returns Component
*/
export declare function HBox(props: Omit<StackProps, "ref">): import("react/jsx-runtime").JSX.Element;
/**
* Horizonal box with list items
* @param props Props
* @returns Component
*/
export declare function HBoxList(props: Omit<StackProps, "direction">): import("react/jsx-runtime").JSX.Element;
/**
* Vertial box
* @param props Props
* @returns Component
*/
export declare function VBox(props: Omit<StackProps, "ref">): import("react/jsx-runtime").JSX.Element;