Programmer-RD-AI
feat: add Paragraph component and types for typography
a8aec61
raw
history blame
269 Bytes
import { cn } from '@/lib/utils'
const Skeleton = ({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) => {
return (
<div
className={cn('animate-pulse rounded-md bg-primary/10', className)}
{...props}
/>
)
}
export { Skeleton }