mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-01-22 19:06:12 +00:00
fc4f89f806
* 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;
|
|
}
|