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