@kwiz/fluentui
Version:
KWIZ common controls for FluentUI
7 lines • 390 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import { Stack } from './stack';
export const Vertical = React.forwardRef((props, ref) => {
return _jsx(Stack, Object.assign({}, props, { ref: ref, direction: 'v', justified: props.vCentered === true ? "centered" : props.vSpaced === true ? "evenly" : props.vSpaced }));
});
//# sourceMappingURL=vertical.js.map