scripts/apps/contacts/components/Popup/Label.tsx
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
const Label: React.StatelessComponent<any> = ({text, children, centerText}) => (
<span
className={classNames(
'popup__menu-label',
{'popup__menu-label--center': centerText},
)}
>
{text}
{children}
</span>
);
Label.propTypes = {
text: PropTypes.string,
children: PropTypes.node,
centerText: PropTypes.bool,
};
Label.defaultProps = {centerText: false};
export default Label;