@progress/kendo-themes-html 7.1.0-dev.3 → 7.1.0-dev.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +1269 -1247
- package/dist/cjs/prompt/prompt-content.js +3 -4813
- package/dist/cjs/prompt/prompt-view.js +4862 -0
- package/dist/cjs/prompt/templates/prompt-more-actions.js +92 -72
- package/dist/cjs/prompt/templates/prompt-normal.js +89 -69
- package/dist/cjs/prompt/templates/prompt-output.js +120 -100
- package/dist/cjs/prompt/templates/prompt-popup.js +91 -71
- package/dist/cjs/prompt/templates/prompt-settings.js +86 -66
- package/dist/cjs/prompt/templates/prompt-suggestions.js +96 -76
- package/dist/cjs/prompt/tests/prompt-more-actions.js +98 -78
- package/dist/cjs/prompt/tests/prompt-normal.js +136 -116
- package/dist/cjs/prompt/tests/prompt-output.js +126 -106
- package/dist/cjs/timeline/horizontal-timeline-event.spec.js +1 -2
- package/dist/cjs/timeline/templates/timeline-horizontal.js +1 -2
- package/dist/cjs/timeline/templates/timeline-normal-alternating.js +1 -2
- package/dist/cjs/timeline/templates/timeline-normal-collapsible.js +1 -2
- package/dist/cjs/timeline/templates/timeline-normal.js +1 -2
- package/dist/cjs/timeline/tests/timeline-horizontal.js +1 -2
- package/dist/cjs/timeline/tests/timeline-vertical-alternating.js +1 -2
- package/dist/cjs/timeline/tests/timeline-vertical.js +1 -2
- package/dist/cjs/timeline/timeline-card-title.js +8 -165
- package/dist/cjs/timeline/timeline-card.spec.js +1 -2
- package/dist/cjs/timeline/timeline-track-wrap.spec.js +1 -2
- package/dist/cjs/timeline/vertical-timeline-event.spec.js +1 -2
- package/dist/esm/index.js +1095 -1073
- package/dist/esm/prompt/prompt-content.js +4 -4820
- package/dist/esm/prompt/prompt-view.js +4846 -0
- package/dist/esm/prompt/templates/prompt-more-actions.js +84 -64
- package/dist/esm/prompt/templates/prompt-normal.js +83 -63
- package/dist/esm/prompt/templates/prompt-output.js +108 -88
- package/dist/esm/prompt/templates/prompt-popup.js +86 -66
- package/dist/esm/prompt/templates/prompt-settings.js +77 -57
- package/dist/esm/prompt/templates/prompt-suggestions.js +90 -70
- package/dist/esm/prompt/tests/prompt-more-actions.js +89 -69
- package/dist/esm/prompt/tests/prompt-normal.js +123 -103
- package/dist/esm/prompt/tests/prompt-output.js +113 -93
- package/dist/esm/timeline/horizontal-timeline-event.spec.js +1 -2
- package/dist/esm/timeline/templates/timeline-horizontal.js +1 -2
- package/dist/esm/timeline/templates/timeline-normal-alternating.js +1 -2
- package/dist/esm/timeline/templates/timeline-normal-collapsible.js +1 -2
- package/dist/esm/timeline/templates/timeline-normal.js +1 -2
- package/dist/esm/timeline/tests/timeline-horizontal.js +1 -2
- package/dist/esm/timeline/tests/timeline-vertical-alternating.js +1 -2
- package/dist/esm/timeline/tests/timeline-vertical.js +1 -2
- package/dist/esm/timeline/timeline-card-title.js +8 -165
- package/dist/esm/timeline/timeline-card.spec.js +1 -2
- package/dist/esm/timeline/timeline-track-wrap.spec.js +1 -2
- package/dist/esm/timeline/vertical-timeline-event.spec.js +1 -2
- package/dist/types/prompt/index.d.ts +1 -0
- package/dist/types/prompt/prompt-content.d.ts +1 -7
- package/dist/types/prompt/prompt-view.d.ts +8 -0
- package/package.json +2 -2
- package/src/prompt/index.ts +1 -0
- package/src/prompt/prompt-content.tsx +1 -30
- package/src/prompt/prompt-view.tsx +51 -0
- package/src/prompt/templates/prompt-more-actions.tsx +11 -9
- package/src/prompt/templates/prompt-normal.tsx +4 -2
- package/src/prompt/templates/prompt-output.tsx +33 -31
- package/src/prompt/templates/prompt-popup.tsx +4 -2
- package/src/prompt/templates/prompt-settings.tsx +25 -23
- package/src/prompt/templates/prompt-suggestions.tsx +12 -10
- package/src/timeline/timeline-card-title.tsx +2 -2
|
@@ -8013,8 +8013,28 @@ var PromptHeader = (props) => {
|
|
|
8013
8013
|
);
|
|
8014
8014
|
};
|
|
8015
8015
|
|
|
8016
|
-
// src/
|
|
8016
|
+
// src/prompt/prompt-content.tsx
|
|
8017
8017
|
var import_jsx_runtime137 = require("react/jsx-runtime");
|
|
8018
|
+
var PROMPTCONTENT_CLASSNAME = `k-prompt-content`;
|
|
8019
|
+
var PromptContent = (props) => {
|
|
8020
|
+
const {
|
|
8021
|
+
...other
|
|
8022
|
+
} = props;
|
|
8023
|
+
return /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
8024
|
+
"div",
|
|
8025
|
+
{
|
|
8026
|
+
...other,
|
|
8027
|
+
className: classNames(
|
|
8028
|
+
props.className,
|
|
8029
|
+
PROMPTCONTENT_CLASSNAME
|
|
8030
|
+
),
|
|
8031
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(import_jsx_runtime137.Fragment, { children: props.children })
|
|
8032
|
+
}
|
|
8033
|
+
);
|
|
8034
|
+
};
|
|
8035
|
+
|
|
8036
|
+
// src/textarea/textarea.spec.tsx
|
|
8037
|
+
var import_jsx_runtime138 = require("react/jsx-runtime");
|
|
8018
8038
|
var TEXTAREA_CLASSNAME = `k-textarea`;
|
|
8019
8039
|
var states53 = [
|
|
8020
8040
|
States.hover,
|
|
@@ -8050,7 +8070,7 @@ var Textarea = (props) => {
|
|
|
8050
8070
|
disabled,
|
|
8051
8071
|
...other
|
|
8052
8072
|
} = props;
|
|
8053
|
-
return /* @__PURE__ */ (0,
|
|
8073
|
+
return /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
8054
8074
|
Input,
|
|
8055
8075
|
{
|
|
8056
8076
|
...other,
|
|
@@ -8064,7 +8084,7 @@ var Textarea = (props) => {
|
|
|
8064
8084
|
required,
|
|
8065
8085
|
disabled,
|
|
8066
8086
|
className: classNames(props.className, TEXTAREA_CLASSNAME),
|
|
8067
|
-
children: /* @__PURE__ */ (0,
|
|
8087
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
8068
8088
|
InputInnerTextarea,
|
|
8069
8089
|
{
|
|
8070
8090
|
className: classNames(
|
|
@@ -8084,50 +8104,50 @@ Textarea.className = TEXTAREA_CLASSNAME;
|
|
|
8084
8104
|
Textarea.defaultProps = defaultProps48;
|
|
8085
8105
|
|
|
8086
8106
|
// src/textarea/templates/textarea-normal.tsx
|
|
8087
|
-
var import_jsx_runtime138 = require("react/jsx-runtime");
|
|
8088
|
-
|
|
8089
|
-
// src/prompt/prompt-content.tsx
|
|
8090
8107
|
var import_jsx_runtime139 = require("react/jsx-runtime");
|
|
8091
|
-
|
|
8092
|
-
|
|
8108
|
+
|
|
8109
|
+
// src/prompt/prompt-view.tsx
|
|
8110
|
+
var import_jsx_runtime140 = require("react/jsx-runtime");
|
|
8111
|
+
var PROMPTVIEW_CLASSNAME = `k-prompt-view`;
|
|
8112
|
+
var PromptView = (props) => {
|
|
8093
8113
|
const {
|
|
8094
8114
|
showSearch,
|
|
8095
8115
|
suggestions,
|
|
8096
8116
|
settings,
|
|
8097
8117
|
...other
|
|
8098
8118
|
} = props;
|
|
8099
|
-
return /* @__PURE__ */ (0,
|
|
8119
|
+
return /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(
|
|
8100
8120
|
"div",
|
|
8101
8121
|
{
|
|
8102
8122
|
...other,
|
|
8103
8123
|
className: classNames(
|
|
8104
8124
|
props.className,
|
|
8105
|
-
|
|
8125
|
+
PROMPTVIEW_CLASSNAME
|
|
8106
8126
|
),
|
|
8107
8127
|
children: [
|
|
8108
|
-
showSearch && /* @__PURE__ */ (0,
|
|
8109
|
-
suggestions && /* @__PURE__ */ (0,
|
|
8110
|
-
/* @__PURE__ */ (0,
|
|
8111
|
-
/* @__PURE__ */ (0,
|
|
8128
|
+
showSearch && /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(Textarea, { rows: 1, placeholder: "Ask or generate content with AI" }),
|
|
8129
|
+
suggestions && /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)("div", { className: "k-prompt-expander", children: [
|
|
8130
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)(IconTextButton, { fillMode: "flat", icon: "chevron-down", children: "Prompt Suggestions" }),
|
|
8131
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("div", { className: "k-prompt-expander-content", children: /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(import_jsx_runtime140.Fragment, { children: suggestions }) })
|
|
8112
8132
|
] }),
|
|
8113
|
-
settings && /* @__PURE__ */ (0,
|
|
8114
|
-
/* @__PURE__ */ (0,
|
|
8115
|
-
/* @__PURE__ */ (0,
|
|
8133
|
+
settings && /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)("div", { className: "k-prompt-expander", children: [
|
|
8134
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)(IconTextButton, { fillMode: "flat", icon: "chevron-down", children: "Settings" }),
|
|
8135
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("div", { className: "k-prompt-expander-content", children: settings })
|
|
8116
8136
|
] }),
|
|
8117
|
-
|
|
8137
|
+
props.children
|
|
8118
8138
|
]
|
|
8119
8139
|
}
|
|
8120
8140
|
);
|
|
8121
8141
|
};
|
|
8122
8142
|
|
|
8123
8143
|
// src/prompt/prompt-footer.tsx
|
|
8124
|
-
var
|
|
8144
|
+
var import_jsx_runtime141 = require("react/jsx-runtime");
|
|
8125
8145
|
var PROMPTFOOTER_CLASSNAME = `k-prompt-footer`;
|
|
8126
8146
|
var PromptFooter = (props) => {
|
|
8127
8147
|
const {
|
|
8128
8148
|
...other
|
|
8129
8149
|
} = props;
|
|
8130
|
-
return /* @__PURE__ */ (0,
|
|
8150
|
+
return /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
8131
8151
|
"div",
|
|
8132
8152
|
{
|
|
8133
8153
|
...other,
|
|
@@ -8141,16 +8161,16 @@ var PromptFooter = (props) => {
|
|
|
8141
8161
|
};
|
|
8142
8162
|
|
|
8143
8163
|
// src/prompt/prompt-suggestion.tsx
|
|
8144
|
-
var
|
|
8164
|
+
var import_jsx_runtime142 = require("react/jsx-runtime");
|
|
8145
8165
|
|
|
8146
8166
|
// src/prompt/prompt-setting.tsx
|
|
8147
|
-
var
|
|
8167
|
+
var import_jsx_runtime143 = require("react/jsx-runtime");
|
|
8148
8168
|
var PROMPTSETTING_CLASSNAME = `k-prompt-setting`;
|
|
8149
8169
|
var PromptSetting = (props) => {
|
|
8150
8170
|
const {
|
|
8151
8171
|
...other
|
|
8152
8172
|
} = props;
|
|
8153
|
-
return /* @__PURE__ */ (0,
|
|
8173
|
+
return /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
8154
8174
|
"div",
|
|
8155
8175
|
{
|
|
8156
8176
|
...other,
|
|
@@ -8164,20 +8184,20 @@ var PromptSetting = (props) => {
|
|
|
8164
8184
|
};
|
|
8165
8185
|
|
|
8166
8186
|
// src/prompt/templates/prompt-normal.tsx
|
|
8167
|
-
var
|
|
8187
|
+
var import_jsx_runtime144 = require("react/jsx-runtime");
|
|
8168
8188
|
|
|
8169
8189
|
// src/prompt/templates/prompt-suggestions.tsx
|
|
8170
|
-
var
|
|
8190
|
+
var import_jsx_runtime145 = require("react/jsx-runtime");
|
|
8171
8191
|
|
|
8172
8192
|
// src/card/card-callout.tsx
|
|
8173
|
-
var
|
|
8193
|
+
var import_jsx_runtime146 = require("react/jsx-runtime");
|
|
8174
8194
|
var CARDCALLOUT_CLASSNAME = `k-card-callout`;
|
|
8175
8195
|
var CardCallout = (props) => {
|
|
8176
8196
|
const {
|
|
8177
8197
|
callout,
|
|
8178
8198
|
...other
|
|
8179
8199
|
} = props;
|
|
8180
|
-
return /* @__PURE__ */ (0,
|
|
8200
|
+
return /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
8181
8201
|
"span",
|
|
8182
8202
|
{
|
|
8183
8203
|
...other,
|
|
@@ -8193,7 +8213,7 @@ var CardCallout = (props) => {
|
|
|
8193
8213
|
};
|
|
8194
8214
|
|
|
8195
8215
|
// src/card/card.spec.tsx
|
|
8196
|
-
var
|
|
8216
|
+
var import_jsx_runtime147 = require("react/jsx-runtime");
|
|
8197
8217
|
var CARD_CLASSNAME = `k-card`;
|
|
8198
8218
|
var states54 = [
|
|
8199
8219
|
States.hover,
|
|
@@ -8222,7 +8242,7 @@ var Card = (props) => {
|
|
|
8222
8242
|
disabled,
|
|
8223
8243
|
...other
|
|
8224
8244
|
} = props;
|
|
8225
|
-
return /* @__PURE__ */ (0,
|
|
8245
|
+
return /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)(
|
|
8226
8246
|
"div",
|
|
8227
8247
|
{
|
|
8228
8248
|
...other,
|
|
@@ -8244,8 +8264,8 @@ var Card = (props) => {
|
|
|
8244
8264
|
}
|
|
8245
8265
|
),
|
|
8246
8266
|
children: [
|
|
8247
|
-
callout && callout !== "true" && /* @__PURE__ */ (0,
|
|
8248
|
-
/* @__PURE__ */ (0,
|
|
8267
|
+
callout && callout !== "true" && /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(CardCallout, { callout }),
|
|
8268
|
+
/* @__PURE__ */ (0, import_jsx_runtime147.jsx)(import_jsx_runtime147.Fragment, { children: props.children })
|
|
8249
8269
|
]
|
|
8250
8270
|
}
|
|
8251
8271
|
);
|
|
@@ -8256,78 +8276,78 @@ Card.className = CARD_CLASSNAME;
|
|
|
8256
8276
|
Card.defaultProps = defaultProps49;
|
|
8257
8277
|
|
|
8258
8278
|
// src/card/card-title.tsx
|
|
8259
|
-
var
|
|
8279
|
+
var import_jsx_runtime148 = require("react/jsx-runtime");
|
|
8260
8280
|
var states55 = [
|
|
8261
8281
|
States.hover,
|
|
8262
8282
|
States.focus
|
|
8263
8283
|
];
|
|
8264
8284
|
|
|
8265
8285
|
// src/card/card-subtitle.tsx
|
|
8266
|
-
var
|
|
8286
|
+
var import_jsx_runtime149 = require("react/jsx-runtime");
|
|
8267
8287
|
|
|
8268
8288
|
// src/card/card-media.tsx
|
|
8269
|
-
var
|
|
8289
|
+
var import_jsx_runtime150 = require("react/jsx-runtime");
|
|
8270
8290
|
|
|
8271
8291
|
// src/card/card-header.tsx
|
|
8272
|
-
var
|
|
8292
|
+
var import_jsx_runtime151 = require("react/jsx-runtime");
|
|
8273
8293
|
|
|
8274
8294
|
// src/card/card-footer.tsx
|
|
8275
|
-
var
|
|
8295
|
+
var import_jsx_runtime152 = require("react/jsx-runtime");
|
|
8276
8296
|
|
|
8277
8297
|
// src/card/card-body.tsx
|
|
8278
|
-
var
|
|
8298
|
+
var import_jsx_runtime153 = require("react/jsx-runtime");
|
|
8279
8299
|
|
|
8280
8300
|
// src/card/card-deck.tsx
|
|
8281
|
-
var
|
|
8301
|
+
var import_jsx_runtime154 = require("react/jsx-runtime");
|
|
8282
8302
|
|
|
8283
8303
|
// src/card/templates/card-normal.tsx
|
|
8284
|
-
var
|
|
8304
|
+
var import_jsx_runtime155 = require("react/jsx-runtime");
|
|
8285
8305
|
|
|
8286
8306
|
// src/card/templates/card-horizontal.tsx
|
|
8287
|
-
var
|
|
8307
|
+
var import_jsx_runtime156 = require("react/jsx-runtime");
|
|
8288
8308
|
|
|
8289
8309
|
// src/prompt/templates/prompt-output.tsx
|
|
8290
|
-
var
|
|
8310
|
+
var import_jsx_runtime157 = require("react/jsx-runtime");
|
|
8291
8311
|
|
|
8292
8312
|
// src/prompt/templates/prompt-more-actions.tsx
|
|
8293
|
-
var
|
|
8313
|
+
var import_jsx_runtime158 = require("react/jsx-runtime");
|
|
8294
8314
|
|
|
8295
8315
|
// src/prompt/templates/prompt-popup.tsx
|
|
8296
|
-
var
|
|
8316
|
+
var import_jsx_runtime159 = require("react/jsx-runtime");
|
|
8297
8317
|
|
|
8298
8318
|
// src/prompt/templates/prompt-settings.tsx
|
|
8299
|
-
var
|
|
8300
|
-
var PromptSettings = (props) => /* @__PURE__ */ (0,
|
|
8301
|
-
/* @__PURE__ */ (0,
|
|
8302
|
-
/* @__PURE__ */ (0,
|
|
8303
|
-
/* @__PURE__ */ (0,
|
|
8304
|
-
/* @__PURE__ */ (0,
|
|
8319
|
+
var import_jsx_runtime160 = require("react/jsx-runtime");
|
|
8320
|
+
var PromptSettings = (props) => /* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(Prompt, { ...props, children: [
|
|
8321
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(PromptHeader, { children: /* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(Toolbar, { className: "k-toolbar-flat", children: [
|
|
8322
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(IconTextButton, { fillMode: "flat", themeColor: "primary", icon: "sparkles", rounded: "full", selected: true, children: "Ask AI" }),
|
|
8323
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(IconTextButton, { fillMode: "flat", themeColor: "primary", icon: "comment", rounded: "full", children: "Output" }),
|
|
8324
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(IconButton, { fillMode: "flat", themeColor: "primary", icon: "more-horizontal", rounded: "full" })
|
|
8305
8325
|
] }) }),
|
|
8306
|
-
/* @__PURE__ */ (0,
|
|
8307
|
-
|
|
8326
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(PromptContent, { children: /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(
|
|
8327
|
+
PromptView,
|
|
8308
8328
|
{
|
|
8309
8329
|
showSearch: true,
|
|
8310
|
-
settings: /* @__PURE__ */ (0,
|
|
8311
|
-
/* @__PURE__ */ (0,
|
|
8330
|
+
settings: /* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(import_jsx_runtime160.Fragment, { children: [
|
|
8331
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(PromptSetting, { children: [
|
|
8312
8332
|
"Length:",
|
|
8313
|
-
/* @__PURE__ */ (0,
|
|
8314
|
-
/* @__PURE__ */ (0,
|
|
8315
|
-
/* @__PURE__ */ (0,
|
|
8316
|
-
/* @__PURE__ */ (0,
|
|
8333
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(ChipList, { children: [
|
|
8334
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Small" }),
|
|
8335
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Medium" }),
|
|
8336
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Large" })
|
|
8317
8337
|
] })
|
|
8318
8338
|
] }),
|
|
8319
|
-
/* @__PURE__ */ (0,
|
|
8339
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(PromptSetting, { children: [
|
|
8320
8340
|
"Tone:",
|
|
8321
|
-
/* @__PURE__ */ (0,
|
|
8322
|
-
/* @__PURE__ */ (0,
|
|
8323
|
-
/* @__PURE__ */ (0,
|
|
8324
|
-
/* @__PURE__ */ (0,
|
|
8325
|
-
/* @__PURE__ */ (0,
|
|
8326
|
-
/* @__PURE__ */ (0,
|
|
8341
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsxs)(ChipList, { children: [
|
|
8342
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Professional" }),
|
|
8343
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Friendly" }),
|
|
8344
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Casual" }),
|
|
8345
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Straightforward" }),
|
|
8346
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(Chip, { text: "Confident" })
|
|
8327
8347
|
] })
|
|
8328
8348
|
] })
|
|
8329
8349
|
] })
|
|
8330
8350
|
}
|
|
8331
|
-
),
|
|
8332
|
-
/* @__PURE__ */ (0,
|
|
8351
|
+
) }),
|
|
8352
|
+
/* @__PURE__ */ (0, import_jsx_runtime160.jsx)(PromptFooter, { children: /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(ActionButtons, { className: "k-prompt-actions", alignment: "start", children: /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(IconTextButton, { icon: "sparkles", themeColor: "primary", rounded: "full", children: "Generate" }) }) })
|
|
8333
8353
|
] });
|