mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-03-10 06:00:19 +00:00
* added icons and component * updated unocss to add dynamic icons * removed temp logs * updated readme
9 lines
144 B
TypeScript
9 lines
144 B
TypeScript
export interface Template {
|
|
name: string;
|
|
label: string;
|
|
description: string;
|
|
githubRepo: string;
|
|
tags?: string[];
|
|
icon?: string;
|
|
}
|