UNPKG

@nami-ui/stack

Version:
9 lines (8 loc) 322 B
import { jsx as _jsx } from "react/jsx-runtime"; import { Stack } from './stack'; export function HStack(props) { return _jsx(Stack, Object.assign({}, props, { direction: "horizontal" }), void 0); } export function VStack(props) { return _jsx(Stack, Object.assign({}, props, { direction: "vertical" }), void 0); }