Prepare v0.1.0 release dependencies

This commit is contained in:
2026-06-24 20:02:49 +02:00
parent ce30b4d054
commit 9c2b84a64a
27 changed files with 900 additions and 48 deletions

View File

@@ -0,0 +1,11 @@
import type { ReactNode } from "react";
export type PolicyLockedHintProps = {
children: ReactNode;
className?: string;
};
export default function PolicyLockedHint({ children, className = "" }: PolicyLockedHintProps) {
if (!children) return null;
return <p className={`muted small-note policy-locked-hint ${className}`.trim()}>{children}</p>;
}