/* generated by Svelte vX.Y.Z */ import { append, assign, createSvgElement, detachNode, init, insert, proto, setAttribute } from "svelte/shared.js"; function create_main_fragment(component, ctx) { var svg, g0, g1; return { c() { svg = createSvgElement("svg"); g0 = createSvgElement("g"); g1 = createSvgElement("g"); setAttribute(g0, "data-foo", "bar"); setAttribute(g1, "data-foo", ctx.bar); }, m(target, anchor) { insert(target, svg, anchor); append(svg, g0); append(svg, g1); }, p(changed, ctx) { if (changed.bar) { setAttribute(g1, "data-foo", ctx.bar); } }, d(detach) { if (detach) { detachNode(svg); } } }; } function SvelteComponent(options) { init(this, options); this._state = assign({}, options.data); this._intro = true; 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;