UNPKG

@yamada-ui/react

Version:

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

39 lines (38 loc) 1.13 kB
import { ComponentSlotStyle } from "../../core/system/index.types.js"; import { CSSModifierObject, CSSPropObject, CSSSlotObject } from "../../core/css/index.types.js"; import "../../index.js"; //#region src/components/popover/popover.style.d.ts declare const popoverStyle: ComponentSlotStyle<"body" | "footer" | "header" | "content" | "positioner", CSSPropObject<CSSSlotObject<"body" | "footer" | "header" | "content" | "positioner">>, { xs: { content: { "--gap": "spaces.1"; "--padding": "spaces.2"; fontSize: "xs"; }; }; sm: { content: { "--gap": "spaces.2"; "--padding": "spaces.3"; fontSize: "sm"; }; }; md: { content: { "--gap": "spaces.3"; "--padding": "spaces.4"; fontSize: "md"; }; }; lg: { content: { "--gap": "spaces.4"; "--padding": "spaces.5"; fontSize: "md"; }; }; }, CSSModifierObject<CSSSlotObject<"body" | "footer" | "header" | "content" | "positioner">>>; type PopoverStyle = typeof popoverStyle; //#endregion export { PopoverStyle, popoverStyle }; //# sourceMappingURL=popover.style.d.ts.map