diff --git a/src/common/components/Button/Button.jsx b/src/common/components/Button/Button.jsx new file mode 100644 index 0000000..155b27d --- /dev/null +++ b/src/common/components/Button/Button.jsx @@ -0,0 +1,8 @@ +import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"; +import {faCircleNotch} from "@fortawesome/free-solid-svg-icons"; +import "./styles.sass"; + +export const Button = ({type = "primary", text = "Button", onClick, loading = false}) => ( + +) \ No newline at end of file