jan/web-app/src/components/ui/skeleton.tsx
Faisal Amir da2f97c227
enhancement: add setting chat width container (#5289)
* enhancement: add setting conversation width

* enahncement: cleanup log and change improve accesibility

* enahcement: move const beta version
2025-06-16 15:02:43 +07:00

14 lines
260 B
TypeScript

import { cn } from '@/lib/utils'
function Skeleton({ className, ...props }: React.ComponentProps<'div'>) {
return (
<div
data-slot="skeleton"
className={cn('bg-main-view-fg/10', className)}
{...props}
/>
)
}
export { Skeleton }