wix-style-react
Version:
wix-style-react
20 lines (16 loc) • 432 B
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import Text from '../../Text';
var TextLabel = function TextLabel(_ref) {
var children = _ref.children;
return React.createElement(
Text,
{ ellipsis: true, light: true, dataHook: 'notification-label' },
children
);
};
TextLabel.propTypes = {
children: PropTypes.node
};
TextLabel.displayName = 'Notification.TextLabel';
export default TextLabel;