@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
42 lines (41 loc) • 898 B
TypeScript
import { ComponentStyle } from "../../core/system/index.types.js";
import { CSSModifierObject } from "../../core/css/index.types.js";
import "../../index.js";
//#region src/components/slide/slide.style.d.ts
declare const slideStyle: ComponentStyle<{
/**
* The placement of the slide.
*
* @default 'inline-end'
*/
placement: {
"block-end": {
bottom: "0";
left: "0";
right: "0";
w: "vw";
};
"block-start": {
left: "0";
right: "0";
top: "0";
w: "vw";
};
"inline-end": {
bottom: "0";
h: "dvh";
right: "0";
top: "0";
};
"inline-start": {
bottom: "0";
h: "dvh";
left: "0";
top: "0";
};
};
}, CSSModifierObject, CSSModifierObject>;
type SlideStyle = typeof slideStyle;
//#endregion
export { SlideStyle, slideStyle };
//# sourceMappingURL=slide.style.d.ts.map