@create-figma-plugin/ui
Version:
Production-grade Preact components that replicate the Figma UI design
11 lines • 490 B
TypeScript
import { ComponentChildren } from 'preact';
import { Space } from '../../types/space.js';
export type StackProps = {
children: ComponentChildren;
space: StackSpace;
};
export type StackSpace = Space;
export declare const Stack: import("preact").FunctionalComponent<Omit<import("../../utilities/create-component.js").MixinHTMLElementAttributes<HTMLDivElement, StackProps>, "ref"> & {
ref?: import("preact").Ref<HTMLDivElement> | undefined;
}>;
//# sourceMappingURL=stack.d.ts.map