UNPKG

@create-figma-plugin/ui

Version:

Production-grade Preact components that replicate the Figma UI design

7 lines 343 B
import { h } from 'preact'; import { createComponent } from '../../utilities/create-component.js'; import styles from './vertical-space.module.css'; export const VerticalSpace = createComponent(function ({ space, ...rest }, ref) { return h("div", { ...rest, ref: ref, class: styles[space] }); }); //# sourceMappingURL=vertical-space.js.map