UNPKG

@kwiz/fluentui

Version:
7 lines 390 B
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