UNPKG

@primer/react

Version:

An implementation of GitHub's Primer Design System using React

9 lines (8 loc) 437 B
import { ForwardRefComponent } from "../utils/polymorphic.js"; import { StackItemProps, StackProps } from "./Stack.js"; //#region src/Stack/index.d.ts declare const Stack: ForwardRefComponent<import("react").ElementType, StackProps<import("react").ElementType>> & { Item: ForwardRefComponent<import("react").ElementType, StackProps<import("react").ElementType>>; }; //#endregion export { Stack, type StackItemProps, type StackProps };