diff --git a/components/Buttons/RedoButton/RedoButton.module.css b/components/Buttons/RedoButton/RedoButton.module.css new file mode 100644 index 0000000..4a4bf25 --- /dev/null +++ b/components/Buttons/RedoButton/RedoButton.module.css @@ -0,0 +1,14 @@ +.backbutton { + width: 5rem; + display: flex; + align-items: center; + font-size: 1.6rem; + font-weight: 500; + gap: 0.8rem; +} + +.backbutton__img { + position: relative; + width: 2rem; + height: 2rem; +} diff --git a/components/Buttons/RedoButton/RedoButton.tsx b/components/Buttons/RedoButton/RedoButton.tsx new file mode 100644 index 0000000..34ecb55 --- /dev/null +++ b/components/Buttons/RedoButton/RedoButton.tsx @@ -0,0 +1,17 @@ +import Image from "next/image"; +import { useRouter } from "next/router"; +import styles from "./RedoButton.module.css"; + +const RedoButton = () => { + const router = useRouter(); + return ( + + ); +}; + +export default RedoButton;