package.dist.esm.components.center.center.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react Show documentation
Show all versions of react Show documentation
Responsive and accessible React UI components built with React and Emotion
The newest version!
"use strict";
"use client";
import { chakra } from '../../styled-system/factory.js';
const Center = chakra("div", {
base: {
display: "flex",
alignItems: "center",
justifyContent: "center"
},
variants: {
inline: {
true: {
display: "inline-flex"
}
}
}
});
Center.displayName = "Center";
export { Center };
© 2015 - 2025 Weber Informatics LLC | Privacy Policy