-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathButton.tsx
60 lines (57 loc) · 1.59 KB
/
Button.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import { ButtonProps } from '@/types/components/button';
import styles from '@/styles/modules/Button.module.scss';
import Link from 'next/link';
import Circle from './icons/Circle';
export default function Button({
label,
href,
isExternal,
externalHref,
anchor,
type = 'button',
onClick,
disabled,
className = 'c-btn',
wrapperClassName,
}: ButtonProps) {
if (label && href) {
return (
<div className={wrapperClassName}>
<Link
className={styles[className ?? '']}
href={href}
onClick={onClick}
>
{label}
</Link>
</div>
);
}
if (label && ((isExternal && externalHref) || anchor)) {
return (
<div className={wrapperClassName}>
<a
className={styles[className ?? '']}
target={isExternal ? '_blank' : undefined}
rel={isExternal ? 'noopener noreferrer' : undefined}
href={externalHref ? externalHref : `#${anchor}`}
>
{label}
</a>
</div>
);
}
return (
<div className={wrapperClassName}>
<button
type={type}
className={styles[className ?? '']}
onClick={onClick}
disabled={disabled}
>
{disabled && <Circle />}
{disabled ? 'Sending...' : label}
</button>
</div>
);
}