(props: Props)
| 3 | } |
| 4 | |
| 5 | const 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 | |
| 19 | export default BetaBadge; |
nothing calls this directly
no outgoing calls
no test coverage detected