UNPKG

inline-style-editor

Version:

Update CSS rules or add inline style to elements visualy

8 lines 288 B
import { mount } from 'svelte'; import StyleEditor from './components/InlineStyleEditor.svelte'; export default class InlineStyleEditor { constructor(options) { const { target = document.body, ...props } = options; return mount(StyleEditor, { target, props }); } }