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

components.regions.ScrollSpy.Title.jsx Maven / Gradle / Ivy

The newest version!
import React from 'react'
import PropTypes from 'prop-types'

export function Title({
    id,
    title,
    className,
    visible = true,
    onClick,
}) {
    if (!title || !visible) {
        return null
    }

    return 
{title}
} Title.propTypes = { id: PropTypes.string, title: PropTypes.string, className: PropTypes.string, visible: PropTypes.bool, onClick: PropTypes.func, }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy