Files
authentik/website/docusaurus-theme/components/PreviewBadge.tsx
Teffen Ellis 72af009de8 website/docs: Improved Version Picker. (#14404)
* website: Flesh out version picker. Port 3.8 theme.

* website: Update Dockerfile to include compose.

* website: Flesh out branch override. Tidy list items.
2025-07-10 15:36:48 -04:00

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;