zent
Version:
一套前端设计语言和基于React的实现
25 lines (20 loc) • 570 B
JavaScript
import React, { Component, PropTypes } from 'react';
import cx from 'zent-utils/classnames';
export default class Icon extends Component {
static propTypes = {
type: PropTypes.string.isRequired,
className: PropTypes.string,
spin: PropTypes.bool
};
static defaultProps = {
className: '',
spin: false
};
render() {
const { type, className, spin, ...otherProps } = this.props;
const cls = cx('zenticon', `zenticon-${type}`, className, {
'zenticon-spin': spin
});
return <i className={cls} {...otherProps}></i>;
}
}