Is there a way to do the same with the Redirect component?
Short answer:
No.
Bit longer:
Technically <Link> creates an <a> tag for you which works with target="_blank". From the docs:
Provides declarative, accessible navigation around your application.
<Redirect> is used for something else, as the documentation states:
Rendering a <Redirect> will navigate to a new location. The new location will override the current location in the history stack, like server-side redirects (HTTP 3xx) do.
So in summary <Redirect> is updating the history, <Link> is used as an anchor tag. At the end of the day if you really need to use target="_blank" then I would suggest to use <Link> or create an <a> tag for that purpose.
Earlier I have create a GitHub repository which represents redirect options, please find it below:
https://github.com/norbitrial/react-router-programmatically-redirect-examples
I hope that helps!