mirror of
https://github.com/yusufipk/natours-react.git
synced 2026-09-11 11:06:10 +00:00
20 lines
328 B
React
20 lines
328 B
React
import "./button.css";
|
|
|
|
function Button(props) {
|
|
const { text, animationName, link } = props;
|
|
return (
|
|
<a
|
|
href="#"
|
|
className={
|
|
animationName === "move-in-bottom"
|
|
? "btn btn-white move-in-bottom"
|
|
: "btn btn-white"
|
|
}
|
|
>
|
|
{text}
|
|
</a>
|
|
);
|
|
}
|
|
|
|
export default Button;
|