@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
34 lines (32 loc) • 730 B
JavaScript
import { defineComponentSlotStyle } from "../../core/system/config.js";
//#region src/components/infinite-scroll-area/infinite-scroll-area.style.ts
const infiniteScrollAreaStyle = defineComponentSlotStyle({
base: {
root: {
display: "flex",
flexDirection: "row",
w: "full"
},
trigger: {
alignItems: "center",
display: "flex",
flex: 1,
justifyContent: "center",
w: "full"
}
},
props: { orientation: {
horizontal: { root: {
flexDirection: "row",
gap: "md"
} },
vertical: { root: {
flexDirection: "column",
gap: "lg"
} }
} },
defaultProps: { orientation: "vertical" }
});
//#endregion
export { infiniteScrollAreaStyle };
//# sourceMappingURL=infinite-scroll-area.style.js.map