@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
30 lines (29 loc) • 760 B
TypeScript
import { ComponentStyle } from "../../core/system/index.types.js";
import { CSSModifierObject } from "../../core/css/index.types.js";
import "../../index.js";
//#region src/components/float/float.style.d.ts
declare const floatStyle: ComponentStyle<{
/**
* The placement of the float.
*
* @default 'start-end'
*/
placement: {
center: {};
"center-center": {};
"center-end": {};
"center-start": {};
end: {};
"end-center": {};
"end-end": {};
"end-start": {};
start: {};
"start-center": {};
"start-end": {};
"start-start": {};
};
}, CSSModifierObject, CSSModifierObject>;
type FloatStyle = typeof floatStyle;
//#endregion
export { FloatStyle, floatStyle };
//# sourceMappingURL=float.style.d.ts.map