UNPKG

@kwiz/fluentui

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