UNPKG

@create-figma-plugin/ui

Version:

Production-grade Preact components that replicate the Figma UI design

12 lines 453 B
import { h } from 'preact'; import { createComponent } from '../utilities/create-component.js'; export function createIcon(svg) { return createComponent(function ({ color, ...rest }) { return (h("div", { ...rest, style: { color: typeof color === 'undefined' ? 'currentColor' : `var(--figma-color-icon-${color})` } }, svg)); }); } //# sourceMappingURL=create-icon.js.map