UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

7 lines (6 loc) 254 B
import { jsx as _jsx } from "react/jsx-runtime"; import { cn } from "@/lib/utils"; function Skeleton({ className, ...props }) { return (_jsx("div", { className: cn("animate-pulse rounded-md bg-muted", className), ...props })); } export { Skeleton };