File size: 419 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import React from "react";
import "./OptFormStyles.css";
function optFormButton({ children, ...restProps }) {
return (
<div>
<a className="optform-button" href="/signup" {...restProps}>
{children}
<img
className="optform-button-image"
src="../images/icons/chevron-right.png"
alt="Try Now"
/>
</a>
</div>
);
}
export default optFormButton;
|