NapCatQQ/src/webui/ui/components/SettingButton.ts
手瓜一十雪 ac5506a43b style: lint
2024-05-22 20:58:49 +08:00

3 lines
208 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>`;
};