UNPKG

@create-figma-plugin/ui

Version:

Production-grade Preact components that replicate the Figma UI design

17 lines 460 B
import { h } from 'preact'; import { MiddleAlign } from '../middle-align.js'; export default { parameters: { fixedWidth: true }, title: 'Layout/Middle Align' }; export const Default = function () { const style = { backgroundColor: 'var(--figma-color-bg-brand-tertiary)', height: 240 }; return (h("div", { style: style }, h(MiddleAlign, null, "Text"))); }; //# sourceMappingURL=middle-align.stories.js.map