diff --git a/src/cryptometrics/components/button/Button.js b/src/cryptometrics/components/button/Button.js new file mode 100644 index 0000000000000000000000000000000000000000..cf14da84404ad8460e12220e853e1650154a4a75 --- /dev/null +++ b/src/cryptometrics/components/button/Button.js @@ -0,0 +1,13 @@ +import classNames from "classnames"; +import React from "react"; + +export default function Button({ children, className, onClick }) { + return ( + <button + className={classNames("py-2 px-5 rounded-xl", className)} + onClick={onClick} + > + {children} + </button> + ); +}