Files
anubis-mirror/docs/src/components/EnterpriseOnly/index.jsx
2025-09-14 20:16:43 +00:00

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>
);
}