@htmlbricks/hb-bundle
Version:
Single IIFE loader for all HTML Bricks hb-* web components from the jsDelivr CDN, with optional Subresource Integrity; includes agent/LLM docs and theme CSS variables.
19 lines (16 loc) • 295 B
TypeScript
export type Paragraphs = {
title?: string;
text: string;
icon?: string;
link?: string;
key?: string;
};
export type Component = {
id?: string;
style?: string;
paragraphs?: Paragraphs[] | string;
img?: string;
};
export type Events = {
paragraphPressed: { key: string };
};