/
QuickMeet
/
Chat.Desktop
Обзор
Документация
Войти
/
QuickMeet
/
Chat.Desktop
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/ui/components/DownloadsManagerView/ActionButton.tsx
14 строк
341 B
Tasso Evangelista
refactor!(deps): Bump all critical dependencies (#2803)
15 янв 2024, 17:33
Не верифицирован
15 янв 2024, 17:33
4b4f2ee
Код
Авторство
О чём код?
import { Box } from '@rocket.chat/fuselage'; import type { AllHTMLAttributes } from 'react'; type ActionButtonProps = AllHTMLAttributes<HTMLAnchorElement>; const ActionButton = (props: ActionButtonProps) => ( <> <Box marginInline={4} withRichContent> <a href='#' {...props} /> </Box> </> ); export default ActionButton;