4.0.0
Some checks failed
Docker Deploy / build-and-push (push) Has been cancelled

This commit is contained in:
2026-01-24 17:24:00 -07:00
parent 210edc771c
commit a26c990a21
27 changed files with 2142 additions and 1430 deletions

View File

@@ -1,11 +1,11 @@
import type { ImageMetadata } from "astro";
import type { ComponentType } from "preact";
import type { Component } from "vue";
import type { GiteaRepoInfo } from "./utils/gitea";
// Icon Types
export type LucideIcon = ComponentType<{ size?: number; class?: string }>;
export type LucideIcon = Component;
export type AstroIconName = string; // For astro-icon string references like "mdi:email"
export type CustomIconComponent = ComponentType<any>;
export type CustomIconComponent = Component;
export type IconType = LucideIcon | AstroIconName | CustomIconComponent;
export interface Talk {