feat: add 'no color' option for button style customization

Adds a 'default' style option that removes color from buttons, showing
Telegram's native default style. Updates type, UI chip, preview, and
translations for all 4 locales.
This commit is contained in:
Fringg
2026-02-12 23:25:49 +03:00
parent b2898730b9
commit e586129c37
6 changed files with 15 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
import apiClient from './client';
export interface ButtonSectionConfig {
style: 'primary' | 'success' | 'danger';
style: 'primary' | 'success' | 'danger' | 'default';
icon_custom_emoji_id: string;
}