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,
}