@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
37 lines (36 loc) • 851 B
TypeScript
import { ComponentStyle } from "../../core/system/index.types.js";
import { CSSModifierObject } from "../../core/css/index.types.js";
import "../../index.js";
//#region src/components/input/input-element.style.d.ts
declare const inputElementStyle: ComponentStyle<{
/**
* If `true`, the element clickable.
*
* @default false
*/
clickable: {
false: {
pointerEvents: "none";
};
true: {
pointerEvents: "auto";
};
};
/**
* The placement of the element.
*
* @default 'start'
*/
placement: {
end: {
insetInlineEnd: "0";
};
start: {
insetInlineStart: "0";
};
};
}, CSSModifierObject, CSSModifierObject>;
type InputElementStyle = typeof inputElementStyle;
//#endregion
export { InputElementStyle, inputElementStyle };
//# sourceMappingURL=input-element.style.d.ts.map