@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
32 lines (28 loc) • 541 B
JavaScript
"use client";
;
var factory = require('../../styled-system/factory.cjs');
const InputElement = factory.chakra("div", {
base: {
display: "flex",
alignItems: "center",
justifyContent: "center",
position: "absolute",
zIndex: 2,
color: "fg.muted",
height: "full",
fontSize: "sm",
px: "3"
},
variants: {
placement: {
start: {
insetInlineStart: "0"
},
end: {
insetInlineEnd: "0"
}
}
}
});
exports.InputElement = InputElement;
;