refactor: Move all @formbricks/ui components to the new folder structure (#1057)

Co-authored-by: Matti Nannt <mail@matthiasnannt.com>
This commit is contained in:
Dhruwang Jariwala
2023-10-11 20:47:13 +05:30
committed by GitHub
parent 7ff847c607
commit e2a6631b64
302 changed files with 508 additions and 544 deletions
+7
View File
@@ -0,0 +1,7 @@
import { cn } from "@formbricks/lib/cn";
function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
return <div className={cn("animate-pulse rounded-full bg-gray-200", className)} {...props}></div>;
}
export { Skeleton };