UNPKG

@yamada-ui/react

Version:

React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion

30 lines (29 loc) 946 B
import { ComponentSlotStyle } from "../../core/system/index.types.js"; import { CSSModifierObject, CSSSlotObject } from "../../core/css/index.types.js"; import "../../index.js"; //#region src/components/infinite-scroll-area/infinite-scroll-area.style.d.ts declare const infiniteScrollAreaStyle: ComponentSlotStyle<"root" | "trigger", { /** * The orientation of the infinite scroll. * * @default 'vertical' */ orientation: { horizontal: { root: { flexDirection: "row"; gap: "md"; }; }; vertical: { root: { flexDirection: "column"; gap: "lg"; }; }; }; }, CSSModifierObject<CSSSlotObject<"root" | "trigger">>, CSSModifierObject<CSSSlotObject<"root" | "trigger">>>; type InfiniteScrollAreaStyle = typeof infiniteScrollAreaStyle; //#endregion export { InfiniteScrollAreaStyle, infiniteScrollAreaStyle }; //# sourceMappingURL=infinite-scroll-area.style.d.ts.map