@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
15 lines (14 loc) • 530 B
TypeScript
import { HTMLStyledProps, StyledComponent } from "../../core/components/index.types.js";
import "../../core/index.js";
import "../../index.js";
//#region src/components/box/box.d.ts
interface BoxProps extends HTMLStyledProps {}
/**
* `Box` is the most abstract component on which all other components are built. By default, it renders a `div` element.
*
* @see https://yamada-ui.com/docs/components/box
*/
declare const Box: StyledComponent<"div", {}>;
//#endregion
export { Box, BoxProps };
//# sourceMappingURL=box.d.ts.map