/* * Copyright (C) Contributors to the Suwayomi project * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ import Stack from '@mui/material/Stack'; import Button from '@mui/material/Button'; import AddCircleIcon from '@mui/icons-material/AddCircle'; import { AwaitableComponent } from 'awaitable-component'; import { useLingui } from '@lingui/react/macro'; import { CustomTooltip } from '@/base/components/CustomTooltip.tsx'; import { ThemeCreationDialog } from '@/features/theme/components/CreateThemeDialog.tsx'; import { TypographyMaxLines } from '@/base/components/texts/TypographyMaxLines.tsx'; export const CreateThemeButton = () => { const { t } = useLingui(); return ( {t`Create theme`} ); };