UNPKG

@loke/design-system

Version:

A design system with individually importable components

6 lines (5 loc) 263 B
import { type BoxProps } from "@loke/design-system/box"; type StackProps = Omit<BoxProps, "flexDirection" | "display">; declare const Stack: ({ gap, ...props }: StackProps) => import("react/jsx-runtime").JSX.Element; export { Stack }; export type { StackProps };