MCPcopy Create free account
hub / github.com/sqlchat/sqlchat / BetaBadge

Function BetaBadge

src/components/BetaBadge.tsx:5–17  ·  view source on GitHub ↗
(props: Props)

Source from the content-addressed store, hash-verified

3}
4
5const BetaBadge: React.FC<Props> = (props: Props) => {
6 const { className } = props;
7
8 return (
9 <span
10 className={`block mx-1 px-2 leading-5 text-xs border dark:border-zinc-600 rounded-full text-gray-500 dark:text-gray-400 ${
11 className ?? ""
12 }`}
13 >
14 Beta
15 </span>
16 );
17};
18
19export default BetaBadge;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected