@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
29 lines (27 loc) • 648 B
JavaScript
import { defineComponentStyle } from "../../core/system/config.js";
//#region src/components/input/input-element.style.ts
const inputElementStyle = defineComponentStyle({
base: {
alignItems: "center",
color: "fg.subtle",
display: "flex",
fontSize: "1em",
height: "full",
justifyContent: "center",
position: "absolute",
zIndex: "kurillin"
},
props: {
clickable: {
false: { pointerEvents: "none" },
true: { pointerEvents: "auto" }
},
placement: {
end: { insetInlineEnd: "0" },
start: { insetInlineStart: "0" }
}
}
});
//#endregion
export { inputElementStyle };
//# sourceMappingURL=input-element.style.js.map