@create-figma-plugin/ui
Version:
Production-grade Preact components that replicate the Figma UI design
7 lines • 330 B
JavaScript
import { h } from 'preact';
import { createComponent } from '../../utilities/create-component.js';
import styles from './bold.module.css';
export const Bold = createComponent(function ({ children, ...rest }, ref) {
return (h("strong", { ...rest, ref: ref, class: styles.bold }, children));
});
//# sourceMappingURL=bold.js.map