UNPKG

@loke/design-system

Version:

A design system with individually importable components

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