@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
18 lines (14 loc) • 338 B
JavaScript
"use client";
const require_factory = require('../../core/system/factory.cjs');
//#region src/components/flex/spacer.tsx
const Spacer = require_factory.styled("div", {
name: "spacer",
base: {
alignSelf: "stretch",
flex: 1,
justifySelf: "stretch"
}
});
//#endregion
exports.Spacer = Spacer;
//# sourceMappingURL=spacer.cjs.map