// A decorative blank spacer card — deliberate empty space / grouping on the // Sacred Valley canvas. Instanceable: each gets a unique id via the factory. import { el } from '../../dom.js'; export function blankCard(id) { return { id, type: 'blank', title: '', decorative: true, size: 'm', mount(body) { body.appendChild(el('div', { class: 'sv-blank' })); }, start() {}, stop() {} }; }