UNPKG

@create-figma-plugin/ui

Version:

Production-grade Preact components that replicate the Figma UI design

11 lines 497 B
import { ComponentChild } from 'preact'; import { Space } from '../../types/space.js'; export type ColumnsProps = { children: ComponentChild; space?: ColumnsSpace; }; export type ColumnsSpace = Space; export declare const Columns: import("preact").FunctionalComponent<Omit<import("../../utilities/create-component.js").MixinHTMLElementAttributes<HTMLDivElement, ColumnsProps>, "ref"> & { ref?: import("preact").Ref<HTMLDivElement> | undefined; }>; //# sourceMappingURL=columns.d.ts.map