forked from www/www-new
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
import React, { AnchorHTMLAttributes, ButtonHTMLAttributes } from "react";
|
|
|
|
import styles from "./Button.module.css";
|
|
|
|
interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
isLink?: false;
|
|
}
|
|
|
|
interface LinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
isLink: true;
|
|
}
|
|
|
|
type Props = (ButtonProps | LinkProps) & { size?: "small" | "normal" };
|
|
|
|
export function Button(props: Props) {
|
|
const btnSize = props.size ? props.size : "normal";
|
|
if (props.isLink) {
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
const { size, isLink, ...otherProps } = props;
|
|
return (
|
|
<a
|
|
{...otherProps}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
className={`${styles.link} ${styles[btnSize]} ${
|
|
otherProps.className ?? ""
|
|
}`}
|
|
/>
|
|
);
|
|
} else {
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
const { size, isLink, ...otherProps } = props;
|
|
return (
|
|
<button
|
|
{...otherProps}
|
|
className={`${styles.button} ${styles[btnSize]} ${
|
|
otherProps.className ?? ""
|
|
}`}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|