* ✨enhancement: add setting conversation width * ✨enahncement: cleanup log and change improve accesibility * ✨enahcement: move const beta version
14 lines
260 B
TypeScript
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 }
|