aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/buttons/button.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/buttons/button.tsx')
-rw-r--r--src/components/atoms/buttons/button.tsx53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/components/atoms/buttons/button.tsx b/src/components/atoms/buttons/button.tsx
new file mode 100644
index 0000000..420ee74
--- /dev/null
+++ b/src/components/atoms/buttons/button.tsx
@@ -0,0 +1,53 @@
+import { FC, MouseEventHandler } from 'react';
+import styles from './buttons.module.scss';
+
+export type ButtonProps = {
+ /**
+ * Button accessible label.
+ */
+ 'aria-label'?: string;
+ /**
+ * Button state. Default: false.
+ */
+ disabled?: boolean;
+ /**
+ * Button kind. Default: secondary.
+ */
+ kind?: 'primary' | 'secondary' | 'tertiary';
+ /**
+ * A callback function to handle click.
+ */
+ onClick?: MouseEventHandler<HTMLButtonElement>;
+ /**
+ * Button type attribute. Default: button.
+ */
+ type?: 'button' | 'reset' | 'submit';
+};
+
+/**
+ * Button component
+ *
+ * Use a button as call to action.
+ */
+const Button: FC<ButtonProps> = ({
+ children,
+ disabled = false,
+ kind = 'secondary',
+ type = 'button',
+ ...props
+}) => {
+ const kindClass = styles[`btn--${kind}`];
+
+ return (
+ <button
+ type={type}
+ disabled={disabled}
+ className={`${styles.btn} ${kindClass}`}
+ {...props}
+ >
+ {children}
+ </button>
+ );
+};
+
+export default Button;