import {
publicDirURL
} from "./chunk-OSUFJZHZ.js";
import {
BaseComponent
} from "./chunk-4YEN7HVQ.js";
// src/templates/header/main.ts
var DARK_MODE_SVG = ``;
var LIGHT_MODE_SVG = ``;
var Header = class extends BaseComponent {
cssFile = new URL("./header/style.css", publicDirURL);
scriptFile = new URL("./header/script.js", publicDirURL);
/**
* The toHTML method is used to output the HTML for the
* web view
*/
async toHTML() {
return `
`;
}
/**
* The toANSI method is used to output the text for the console
*/
async toANSI() {
return "";
}
};
export {
Header
};