All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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' ? (
        brand
    ) : (
        brandImage
    )

    // eslint-disable-next-line react/jsx-no-useless-fragment
    return <>{img}
}

NavbarBrandContent.propTypes = {
    brandImage: PropTypes.oneOfType([PropTypes.string, PropTypes.element]),
}

export default NavbarBrandContent




© 2015 - 2024 Weber Informatics LLC | Privacy Policy