components.snippets.Panel.PanelTitle.jsx Maven / Gradle / Ivy
The newest version!
import React from 'react'
import PropTypes from 'prop-types'
import { Icon } from '../Icon/Icon'
/**
* Компонент заголовка для {@link Panel}
* @reactProps (string) icon - класс для иконки
* @reactProps {node} children - элемент вставляемый в PanelTitle
* @reactProps {function} toggleCollapse - открывает/закрывает панель
*/
function PanelTitle({ icon, children, toggleCollapse }) {
return (
{icon && }
{children}
)
}
PanelTitle.propTypes = {
icon: PropTypes.string,
children: PropTypes.node,
}
export default PanelTitle