UNPKG

@create-figma-plugin/ui

Version:

Production-grade Preact components that replicate the Figma UI design

7 lines 328 B
import { h } from 'preact'; import { createComponent } from '../../utilities/create-component.js'; import styles from './code.module.css'; export const Code = createComponent(function ({ children, ...rest }, ref) { return (h("code", { ...rest, ref: ref, class: styles.code }, children)); }); //# sourceMappingURL=code.js.map