RecruitmentBanner, thank you Lukas

This commit is contained in:
Sriram Hariharan
2023-03-12 23:34:58 -05:00
parent fe4f0e7ecd
commit 6d4a4307cf
5 changed files with 79 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ import { bMessenger } from 'src/shared/messages';
import Text, { TextProps } from '../Text/Text';
import styles from './Link.module.scss';
type Props = TextProps & {
type Props = Omit<TextProps, 'span'> & {
url?: string;
disabled?: boolean;
};
@@ -27,6 +27,7 @@ export default function Link(props: PropsWithChildren<Props>) {
<Text
color='bluebonnet'
{...passedProps}
span
className={classNames(
styles.link,
{