@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
65 lines (64 loc) • 1.42 kB
TypeScript
import { ComponentSlotStyle } from "../../core/system/index.types.js";
import { CSSModifierObject, CSSSlotObject } from "../../core/css/index.types.js";
import "../../index.js";
//#region src/components/blockquote/blockquote.style.d.ts
declare const blockquoteStyle: ComponentSlotStyle<"caption" | "cite" | "content" | "icon" | "root", {
/**
* The alignment of the blockquote.
*
* @default 'start'
*/
justify: {
center: {
root: {
alignItems: "center";
textAlign: "center";
};
};
end: {
root: {
alignItems: "end";
textAlign: "end";
};
};
start: {
root: {
alignItems: "start";
textAlign: "start";
};
};
};
}, CSSModifierObject<CSSSlotObject<"caption" | "cite" | "content" | "icon" | "root">>, {
plain: {
icon: {
color: "colorScheme.solid";
};
root: {
_hasIcon: {
ps: "lg";
};
};
};
solid: {
icon: {
color: "colorScheme.solid";
};
root: {
borderStart: "4px solid {colorScheme.solid}";
px: "md";
};
};
subtle: {
icon: {
color: "colorScheme.fg";
};
root: {
borderStart: "4px solid {colorScheme.muted}";
px: "md";
};
};
}>;
type BlockquoteStyle = typeof blockquoteStyle;
//#endregion
export { BlockquoteStyle, blockquoteStyle };
//# sourceMappingURL=blockquote.style.d.ts.map