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