const AnimationButton = ({text,icon,link,withAnimation= true}:AnimationButtonProps) => { return (

{text}

{ withAnimation ? {icon} : {icon} }
) } export default AnimationButton