UNPKG

@create-figma-plugin/ui

Version:

Production-grade Preact components that replicate the Figma UI design

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