refactor(FE): Update Add button styles and labels

This commit is contained in:
rstubryan
2026-02-03 10:46:58 +07:00
parent 1a938b4218
commit 758a0cd9a7
2 changed files with 6 additions and 8 deletions
@@ -380,12 +380,11 @@ const RecordingTable = () => {
<RequirePermission permissions='lti.production.recording.create'>
<Button
href='/production/recording/add'
variant='outline'
color='primary'
className='w-full sm:w-fit'
className='px-3 py-2.5 w-fit text-sm text-base-100 rounded-lg shadow-sm'
>
<Icon icon='ic:round-plus' width={24} height={24} />
Tambah
<Icon icon='heroicons:plus' width={20} height={20} />
Add Recording
</Button>
</RequirePermission>
@@ -319,12 +319,11 @@ const PurchaseTable = () => {
<RequirePermission permissions='lti.purchase.create'>
<Button
href='/purchase/add'
variant='outline'
color='primary'
className='w-full sm:w-fit'
className='px-3 py-2.5 w-fit text-sm text-base-100 rounded-lg shadow-sm'
>
<Icon icon='ic:round-plus' width={24} height={24} />
Tambah
<Icon icon='heroicons:plus' width={20} height={20} />
Add Purchase
</Button>
</RequirePermission>
</div>