plugins.Header.SimpleHeader.NavbarBrandContent.jsx Maven / Gradle / Ivy
The newest version!
import React from 'react'
import PropTypes from 'prop-types'
/**
* Рендер бренда и лого
* @param props - пропсы
* @param {string | element} props.brandImage - брэнд(изображение)
*/
export const NavbarBrandContent = ({ brandImage }) => {
const img =
brandImage && typeof brandImage === 'string' ? (
) : (
brandImage
)
// eslint-disable-next-line react/jsx-no-useless-fragment
return <>{img}>
}
NavbarBrandContent.propTypes = {
brandImage: PropTypes.oneOfType([PropTypes.string, PropTypes.element]),
}
export default NavbarBrandContent