"use client"; import { RenderComponentWithSnippet } from "@/app/components/render"; import { Row } from "@/app/components/row"; import { Button } from "@calcom/ui/components/button"; const colors = ["primary", "secondary", "minimal", "destructive"] as const; export const LoadingExample: React.FC = () => { return (

Loading State

{colors.map((color) => (
Loading
))}

Loading with Icons

{colors.map((color) => (
With Icon
))}
); };