diff --git a/.changeset/composer-send-arrow.md b/.changeset/composer-send-arrow.md new file mode 100644 index 000000000..d11aa7a7e --- /dev/null +++ b/.changeset/composer-send-arrow.md @@ -0,0 +1,5 @@ +--- +"@moonshot-ai/kimi-code": patch +--- + +Show an up arrow on the web composer send button. diff --git a/apps/kimi-web/design/design-system.html b/apps/kimi-web/design/design-system.html index f41fc9cdc..41fa3e2d2 100644 --- a/apps/kimi-web/design/design-system.html +++ b/apps/kimi-web/design/design-system.html @@ -1062,7 +1062,7 @@
external-link
download
undo
-
send
+
send
image
settings
sliders
diff --git a/apps/kimi-web/public/design-system.html b/apps/kimi-web/public/design-system.html index f41fc9cdc..41fa3e2d2 100644 --- a/apps/kimi-web/public/design-system.html +++ b/apps/kimi-web/public/design-system.html @@ -1062,7 +1062,7 @@
external-link
download
undo
-
send
+
send
image
settings
sliders
diff --git a/apps/kimi-web/scripts/gen-icon-data.mjs b/apps/kimi-web/scripts/gen-icon-data.mjs index 49ed7dc45..d228a8d03 100644 --- a/apps/kimi-web/scripts/gen-icon-data.mjs +++ b/apps/kimi-web/scripts/gen-icon-data.mjs @@ -34,7 +34,7 @@ const GROUPS = [ 'external-link': 'external-link-line', download: 'download-line', undo: 'arrow-go-back-line', - send: 'send-plane-line', + send: 'arrow-up-line', image: 'image-line', settings: 'settings-3-line', sliders: 'equalizer-line', diff --git a/apps/kimi-web/src/lib/icon-data.ts b/apps/kimi-web/src/lib/icon-data.ts index 54a7a3647..39162a66a 100644 --- a/apps/kimi-web/src/lib/icon-data.ts +++ b/apps/kimi-web/src/lib/icon-data.ts @@ -83,7 +83,7 @@ export const NAME_TO_REMIX: Record = { "external-link": "ri:external-link-line", download: "ri:download-line", undo: "ri:arrow-go-back-line", - send: "ri:send-plane-line", + send: "ri:arrow-up-line", image: "ri:image-line", settings: "ri:settings-3-line", sliders: "ri:equalizer-line", @@ -145,7 +145,7 @@ export const ICON_DATA: Record = { "external-link": { body: "", width: 24, height: 24 }, download: { body: "", width: 24, height: 24 }, undo: { body: "", width: 24, height: 24 }, - send: { body: "", width: 24, height: 24 }, + send: { body: "", width: 24, height: 24 }, image: { body: "", width: 24, height: 24 }, settings: { body: "", width: 24, height: 24 }, sliders: { body: "", width: 24, height: 24 },