UNPKG

@create-figma-plugin/ui

Version:

Production-grade Preact components that replicate the Figma UI design

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