/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/javascript/lab-1146-005/part-01.jsx
26 строк
563 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
const VARIANT_CLASS = { primary: 'button button--primary', outline: 'button button--outline', danger: 'button button--danger', }; export function Button({ variant = 'primary', loading = false, disabled = false, children, ...rest }) { const isDisabled = disabled || loading; return ( <button type="button" className={VARIANT_CLASS[variant] ?? VARIANT_CLASS.primary} disabled={isDisabled} aria-busy={loading || undefined} {...rest} > {loading ? 'Загрузка…' : children} </button> ); }