File: /var/www/lipovac/wp-content/plugins/the-events-calendar/common/src/modules/elements/link/element.js
/**
* External dependencies
*/
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
const Link = ( {
children,
className,
href,
target,
...props,
} ) => {
const getProps = () => {
const elemProps = { ...props };
if ( target === '_blank' ) {
elemProps.rel = 'noopener noreferrer';
}
return elemProps;
};
return (
<a
className={ classNames( 'tribe-editor__link', className ) }
href={ href }
target={ target }
{ ...getProps() }
>
{ children }
</a>
);
};
Link.propTypes = {
children: PropTypes.node,
className: PropTypes.string,
href: PropTypes.string.isRequired,
target: PropTypes.string,
};
export default Link;