@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
19 lines (15 loc) • 368 B
JavaScript
"use client";
;
var factory = require('../../styled-system/factory.cjs');
const StackSeparator = factory.chakra("div", {
base: {
borderWidth: 0,
alignSelf: "stretch",
borderColor: "inherit",
width: "auto",
height: "auto"
}
});
StackSeparator.displayName = "StackSeparator";
exports.StackSeparator = StackSeparator;
;