Files
better-auth/docs/components/beta/badge.tsx
2024-09-17 18:01:47 +03:00

11 lines
437 B
TypeScript

import badgestyle from './badge.module.css'
export const PulicBetaBadge = ({ text }: { text?: string }) => {
return (
<div className={badgestyle.beta}>
<span className={badgestyle.top_key}></span>
<span className={badgestyle.text}>{text || "BETA"}</span>
<span className={badgestyle.bottom_key_1}></span>
<span className={badgestyle.bottom_key_2}></span>
</div>
)
}