@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) • 304 B
JavaScript
"use client";
import { styled } from "../../core/system/factory.js";
//#region src/components/flex/spacer.tsx
const Spacer = styled("div", {
name: "spacer",
base: {
alignSelf: "stretch",
flex: 1,
justifySelf: "stretch"
}
});
//#endregion
export { Spacer };
//# sourceMappingURL=spacer.js.map