@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
89 lines (88 loc) • 1.63 kB
TypeScript
import { ComponentSlotStyle } from "../../core/system/index.types.js";
import { CSSPropObject, CSSSlotObject } from "../../core/css/index.types.js";
import "../../index.js";
//#region src/components/fieldset/fieldset.style.d.ts
declare const fieldsetStyle: ComponentSlotStyle<"header" | "legend" | "content" | "root" | "errorMessage" | "helperMessage", CSSPropObject<CSSSlotObject<"header" | "legend" | "content" | "root" | "errorMessage" | "helperMessage">>, {
sm: {
content: {
gap: "3";
};
errorMessage: {
fontSize: "sm";
};
header: {
gap: "1";
};
helperMessage: {
fontSize: "sm";
};
legend: {
fontSize: "md";
};
root: {
gap: "3";
};
};
md: {
content: {
gap: "4";
};
errorMessage: {
fontSize: "sm";
};
header: {
gap: "1";
};
helperMessage: {
fontSize: "sm";
};
legend: {
fontSize: "md";
};
root: {
gap: "4";
};
};
lg: {
content: {
gap: "6";
};
errorMessage: {
fontSize: "md";
};
header: {
gap: "1";
};
helperMessage: {
fontSize: "md";
};
legend: {
fontSize: "lg";
};
root: {
gap: "6";
};
};
}, {
elevated: {
root: {
bg: "bg.panel";
boxShadow: "md";
};
};
outline: {
root: {
borderWidth: "1px";
};
};
panel: {
root: {
layerStyle: "panel";
};
};
plain: {};
}>;
type FieldsetStyle = typeof fieldsetStyle;
//#endregion
export { FieldsetStyle, fieldsetStyle };
//# sourceMappingURL=fieldset.style.d.ts.map