@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
17 lines (14 loc) • 330 B
JavaScript
"use client";
import { chakra } from '../../styled-system/factory.js';
const StackSeparator = chakra("div", {
base: {
borderWidth: 0,
alignSelf: "stretch",
borderColor: "inherit",
width: "auto",
height: "auto"
}
});
StackSeparator.displayName = "StackSeparator";
export { StackSeparator };
;