NapCatQQ/src/webui/ui/components/SettingButton.ts
2024-08-09 10:37:09 +08:00

3 lines
210 B
TypeScript

export const SettingButton = (text: string, id?: string, type: string = 'secondary') => {
return `<setting-button ${type ? `data-type="${type}"` : ''} ${id ? `id="${id}"` : ''}>${text}</setting-button>`;
};