feishin/src/renderer/features/shared/components/settings-button.tsx
Jeff c1330d92b2
Migrate to Mantine v8 and Design Changes (#961)
* mantine v8 migration

* various design changes and improvements
2025-06-24 00:04:36 -07:00

25 lines
697 B
TypeScript

import { useTranslation } from 'react-i18next';
import { ActionIcon, ActionIconProps } from '/@/shared/components/action-icon/action-icon';
interface SettingsButtonProps extends ActionIconProps {}
export const SettingsButton = ({ ...props }: SettingsButtonProps) => {
const { t } = useTranslation();
return (
<ActionIcon
icon="settings"
iconProps={{
size: 'lg',
...props.iconProps,
}}
tooltip={{
label: t('common.configure', { postProcess: 'sentenceCase' }),
...props.tooltip,
}}
variant="subtle"
{...props}
/>
);
};