bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/common/icon/component.jsx

37 lines
798 B
React
Raw Normal View History

import React, { memo } from 'react';
import PropTypes from 'prop-types';
import cx from 'classnames';
import _ from 'lodash';
2022-07-04 23:27:46 +08:00
import Styled from './styles';
const propTypes = {
iconName: PropTypes.string.isRequired,
prependIconName: PropTypes.string,
2022-07-04 23:27:46 +08:00
rotate: PropTypes.bool,
};
const defaultProps = {
prependIconName: 'icon-bbb-',
2022-07-04 23:27:46 +08:00
rotate: false,
};
const Icon = ({
className,
prependIconName,
iconName,
2022-07-04 23:27:46 +08:00
rotate,
...props
}) => (
2022-07-04 23:27:46 +08:00
<Styled.Icon
2017-10-11 06:08:51 +08:00
className={cx(className, [prependIconName, iconName].join(''))}
// ToastContainer from react-toastify passes a useless closeToast prop here
{..._.omit(props, ['closeToast', 'animations', 'loading'])}
2022-07-04 23:27:46 +08:00
$rotate={rotate}
2017-10-11 06:08:51 +08:00
/>
);
2017-10-23 20:25:05 +08:00
export default memo(Icon);
Icon.propTypes = propTypes;
Icon.defaultProps = defaultProps;