mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 21:10:12 +02:00
c1330d92b2
* mantine v8 migration * various design changes and improvements
26 lines
697 B
TypeScript
26 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}
|
|
/>
|
|
);
|
|
};
|