refactor: PrimaryButton to Button

This commit is contained in:
Mahyar Khanbolooki
2025-07-01 01:41:19 +03:30
parent 9b1333fcf5
commit a26923f455
5 changed files with 11 additions and 11 deletions
@@ -1,4 +1,4 @@
import PrimaryButton from '@/components/button/PrimaryButton';
import Button from '@/components/button/PrimaryButton';
import { EyeToggleIcon } from '@/components/icons/EyeToggleIcon';
import InputField from '@/components/input/InputField';
import { AUTH_PAGE_ELEMENT } from '@/enums';
@@ -52,7 +52,7 @@ function StepNewPassword({ reset = false, onSubmit, onChange, onClick, value, re
</button>
</InputField>
</div>
<PrimaryButton type='submit'>ورود</PrimaryButton>
<Button type='submit'>ورود</Button>
</form>
)
}