mirror of
https://github.com/goauthentik/authentik
synced 2026-04-27 09:57:31 +02:00
* website: Flesh out version picker. Port 3.8 theme. * website: Update Dockerfile to include compose. * website: Flesh out branch override. Tidy list items.
20 lines
453 B
TypeScript
20 lines
453 B
TypeScript
import React from "react";
|
|
|
|
/**
|
|
* Badge indicating the preview status of a feature or integration.
|
|
*/
|
|
export const PreviewBadge: React.FC = () => {
|
|
return (
|
|
<span
|
|
title="This feature is in preview and may change in the future."
|
|
aria-description="Preview badge"
|
|
role="img"
|
|
className="badge badge--preview"
|
|
>
|
|
Preview
|
|
</span>
|
|
);
|
|
};
|
|
|
|
export default PreviewBadge;
|