💄 style(time-slot): Add chart display

This commit is contained in:
web@ppanel
2024-12-30 13:02:03 +07:00
parent 837157cc42
commit c44ad47f3c
26 changed files with 155 additions and 91 deletions
@@ -76,7 +76,9 @@ export function EnhancedInput({
className={cn('border-input flex w-full items-center rounded-md border', className)}
suppressHydrationWarning
>
{prefix && <div className='bg-muted mr-px flex h-9 items-center px-3'>{prefix}</div>}
{prefix && (
<div className='bg-muted mr-px flex h-9 items-center text-nowrap px-3'>{prefix}</div>
)}
<Input
{...props}
value={value}
@@ -84,7 +86,9 @@ export function EnhancedInput({
onChange={handleChange}
onBlur={handleBlur}
/>
{suffix && <div className='bg-muted ml-px flex h-9 items-center px-3'>{suffix}</div>}
{suffix && (
<div className='bg-muted ml-px flex h-9 items-center text-nowrap px-3'>{suffix}</div>
)}
</div>
);
}