feat: update dataset creation UI

This commit is contained in:
nite-knite
2024-12-13 14:37:22 +08:00
parent 2fb71dce50
commit 8de12ef1d7
17 changed files with 170 additions and 241 deletions

View File

@ -38,17 +38,17 @@ const PriorityLabel = () => {
</div>
}>
<span className={`
flex items-center ml-1 px-[5px] h-[18px] rounded border border-[#C7D7FE]
text-[10px] font-medium text-[#3538CD]
shrink-0 flex items-center ml-1 px-1 h-[18px] rounded-[5px] border border-text-accent-secondary
text-2xs font-medium text-text-accent-secondary
`}>
{
plan.type === Plan.professional && (
<ZapNarrow className='mr-0.5 w-3 h-3' />
<ZapNarrow className='mr-0.5 size-3' />
)
}
{
(plan.type === Plan.team || plan.type === Plan.enterprise) && (
<ZapFast className='mr-0.5 w-3 h-3' />
<ZapFast className='mr-0.5 size-3' />
)
}
{t(`billing.plansCommon.priority.${priority}`)}