I have a login page that has two login buttons. One for regular login and the other for login with google. I'm trying to achieve a style with horizontal line with the "OR" word. Something in the picture attached.
My problem how can i put the lines on the sides of the "OR" word. I don't think the RemoveIcon suits it?
Pls check my codesandbox here CLICK HERE
<div className={classes.center}>
            <Button
              type="submit"
              color="primary"
              variant="contained"
              className={classes.mb2}
            >
              Sign in
            </Button>
          </div>
          <div className={classes.center}>
            <RemoveIcon />
            OR
            <RemoveIcon />{" "}
          </div>
          <div className={classes.center}>
            <Button type="button" variant="contained">
              Sign in with Google
            </Button>
          </div>

 
    
 
    