@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
16 lines (13 loc) • 434 B
JavaScript
import styled from "../core/styled.js";
import { stepClassName, tailClassName } from "./consts.js";
//#region src/stepperVertical/stepperVerticalBase.ts
const StepperVerticalBase = styled.divBox`
width: 100%;
.${stepClassName}:last-of-type > .${tailClassName} {
display: none;
}
`;
//#endregion
export { StepperVerticalBase as default };
globalThis.__vuiVersion__ = "5.3.1"
//# sourceMappingURL=stepperVerticalBase.js.map