mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-06 20:51:39 +00:00
25 lines
697 B
TypeScript
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}
|
|
/>
|
|
);
|
|
};
|