UNPKG

@yamada-ui/react

Version:

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

56 lines (55 loc) 1.26 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/empty-state/empty-state.style.d.ts declare const emptyState: ComponentSlotStyle<"title" | "content" | "root" | "indicator" | "description", CSSPropObject<CSSSlotObject<"title" | "content" | "root" | "indicator" | "description">>, { sm: { content: { gap: "xs"; }; indicator: { fontSize: "4xl"; }; root: { gap: "sm"; py: "sm"; }; title: { fontSize: "md"; }; }; md: { content: { gap: "sm"; }; indicator: { fontSize: "5xl"; }; root: { gap: "md"; py: "md"; }; title: { fontSize: "lg"; }; }; lg: { content: { gap: "md"; }; indicator: { fontSize: "6xl"; }; root: { gap: "lg"; py: "lg"; }; title: { fontSize: "xl"; }; }; }, CSSModifierObject<CSSSlotObject<"title" | "content" | "root" | "indicator" | "description">>>; type EmptyState = typeof emptyState; //#endregion export { EmptyState, emptyState }; //# sourceMappingURL=empty-state.style.d.ts.map