mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-04-30 15:09:17 +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>
|
|
);
|
|
};
|