StatusCodeBadge
DomainDisplays an HTTP status code with a semantic color and an optional human-readable label.
200OK201Created204No Content301Moved Permanently400Bad Request401Unauthorized403Forbidden404Not Found422Unprocessable Entity429Too Many Requests500Internal Server Error503Service Unavailable
<StatusCodeBadge code={200} />
<StatusCodeBadge code={201} />
<StatusCodeBadge code={204} />
<StatusCodeBadge code={301} />
<StatusCodeBadge code={400} />
<StatusCodeBadge code={404} />
<StatusCodeBadge code={500} />200404500
<StatusCodeBadge code={200} showLabel={false} />
<StatusCodeBadge code={404} showLabel={false} />
<StatusCodeBadge code={500} showLabel={false} />