@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
16 lines (12 loc) • 375 B
JavaScript
"use client";
import { styled } from "../../core/system/factory.js";
//#region src/components/box/box.tsx
/**
* `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
*/
const Box = styled("div");
//#endregion
export { Box };
//# sourceMappingURL=box.js.map