blob: b4754efd04fcb7f93e70bf411c7c462d8bd56d13 [file] [log] [blame]
import React, { FC } from 'react';
const SupportLink = (props) => (
<>
<div className="support-links-area">
<div className="more-service-content text-center" data-wow-delay=".1s">
<a href={props.href}>
<img src={props.imageSrc} alt=""/>
<h4>{props.label}</h4>
</a>
</div>
</div>
</>
)
export default SupportLink;