mirror of
https://github.com/elementor/hello-theme.git
synced 2026-07-29 15:07:33 +08:00
10 lines
447 B
JavaScript
10 lines
447 B
JavaScript
export const ActionLinks = ( { image, alt, title, message, button, link } ) => {
|
|
return (
|
|
<div className="hello_elementor__action_links">
|
|
<img src={ image } alt={ alt } />
|
|
<p className="hello_elementor__action_links__title">{ title }</p>
|
|
<p className="hello_elementor__action_links__message">{ message }</p>
|
|
<a className="components-button is-secondary" href={ link } target="_blank" rel="noreferrer">{ button }</a>
|
|
</div>
|
|
);
|
|
};
|