Ir al contenido

CircularProgressCenter

Esta página aún no está disponible en tu idioma.

import { CircularProgressCenter } from "@rebasepro/ui";
Prop Type Required Description
size "small" | "smallest" | "medium" | "large"
className string
text string

This is the example the design-system sync renders and verifies for this component.

import { CircularProgressCenter } from "@rebasepro/ui";
// CircularProgressCenter's root element is hard-coded to h-screen (it's meant
// to fill the viewport of a route while data loads), so it is rendered
// un-clipped here rather than inside a short fixed-height wrapper — a
// shorter overflow-hidden ancestor would crop the vertically-centered
// content out of view.
export const WithText = () => (
<CircularProgressCenter size="medium" text="Loading workspace…"/>
);