/
githubmirror
/
Open-Assistant
Обзор
Документация
Войти
/
githubmirror
/
Open-Assistant
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
website/src/components/Chat/DeletePresetButton.tsx
12 строк
340 B
notmd
Allow to save custom preset (#3079)
08 май 2023, 21:02
Не верифицирован
08 май 2023, 21:02
df1fd96
Код
Авторство
О чём код?
import { Button } from "@chakra-ui/react"; import { useTranslation } from "next-i18next"; export const DeletePresetButton = ({ onClick }: { onClick: () => void }) => { const { t } = useTranslation(); return ( <Button onClick={onClick} py="3" variant="outline" colorScheme="red" w="full"> {t("delete")} </Button> ); };