diff --git a/src/components/Button.js b/src/components/Button.js new file mode 100644 index 0000000..8cda1d4 --- /dev/null +++ b/src/components/Button.js @@ -0,0 +1,15 @@ +import styles from './button.module.css' + +export default function Button (props) { + return ( +
+
+ +
+ {props.text} +
+
+
+
+ ) +} diff --git a/src/components/button.module.css b/src/components/button.module.css new file mode 100644 index 0000000..2f6e5e4 --- /dev/null +++ b/src/components/button.module.css @@ -0,0 +1,10 @@ +.ircLink { + background-color: #9999ff; + border: none; + color: white; + padding: 15px 32px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; +}