/* generated by Svelte vX.Y.Z */
import { appendNode, assign, createSvgElement, detachNode, init, insertNode, noop, proto, setAttribute } from "svelte/shared.js";

function create_main_fragment(component, state) {
	var svg, g, g_1;

	return {
		c: function create() {
			svg = createSvgElement("svg");
			g = createSvgElement("g");
			g_1 = createSvgElement("g");
			this.h();
		},

		h: function hydrate() {
			setAttribute(g, "data-foo", "bar");
			setAttribute(g_1, "data-foo", state.bar);
		},

		m: function mount(target, anchor) {
			insertNode(svg, target, anchor);
			appendNode(g, svg);
			appendNode(g_1, svg);
		},

		p: function update(changed, state) {
			if (changed.bar) {
				setAttribute(g_1, "data-foo", state.bar);
			}
		},

		u: function unmount() {
			detachNode(svg);
		},

		d: noop
	};
}

function SvelteComponent(options) {
	init(this, options);
	this._state = assign({}, options.data);

	this._fragment = create_main_fragment(this, this._state);

	if (options.target) {
		this._fragment.c();
		this._mount(options.target, options.anchor);
	}
}

assign(SvelteComponent.prototype, proto);
export default SvelteComponent;