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 OTPInputField from '@/components/input/MultiInputField';
import { AUTH_PAGE_ELEMENT, AUTH_PAGE_ELEMENT as AUTH_PAGE_ELEMENTS } from '@/enums';
import React from 'react'
@@ -51,7 +51,7 @@ function StepEnterOtp({ onSubmit, onChange, onClick, value, phoneNumber, timerRu
</div>
</div>
</div>
<PrimaryButton type='submit'>بعدی</PrimaryButton>
<Button type='submit'>بعدی</Button>
</form>
)
}