mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-05 16:28:17 +00:00
11 lines
280 B
JavaScript
11 lines
280 B
JavaScript
import styles from './styles.module.css';
|
|
|
|
export default function EnterpriseOnly({ link }) {
|
|
return (
|
|
<a className={styles.link} href={link}>
|
|
<div className={styles.container}>
|
|
<span className={styles.label}>BotStopper Only</span>
|
|
</div>
|
|
</a>
|
|
);
|
|
} |