2020-02-25 16:04:44 +00:00
|
|
|
import * as I from '../assets'
|
|
|
|
|
|
|
|
export default class Icon extends PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
className: PropTypes.string,
|
|
|
|
width: PropTypes.string,
|
|
|
|
height: PropTypes.string,
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { id, ...options } = this.props
|
|
|
|
|
|
|
|
switch (id) {
|
|
|
|
case 'add':
|
|
|
|
return <I.AddIcon {...options} />
|
|
|
|
case 'apps':
|
|
|
|
return <I.AppsIcon {...options} />
|
|
|
|
case 'angle-right':
|
|
|
|
return <I.AngleRightIcon {...options} />
|
|
|
|
case 'back':
|
|
|
|
return <I.BackIcon {...options} />
|
|
|
|
case 'calendar':
|
|
|
|
return <I.CalendarIcon {...options} />
|
|
|
|
case 'chat':
|
|
|
|
return <I.ChatIcon {...options} />
|
|
|
|
case 'close':
|
|
|
|
return <I.CloseIcon {...options} />
|
|
|
|
case 'comment':
|
|
|
|
return <I.CommentIcon {...options} />
|
|
|
|
case 'dissenter':
|
|
|
|
return <I.DissenterIcon {...options} />
|
|
|
|
case 'ellipsis':
|
|
|
|
return <I.EllipsisIcon {...options} />
|
2020-02-29 15:42:47 +00:00
|
|
|
case 'error':
|
|
|
|
return <I.ErrorIcon {...options} />
|
2020-02-25 16:04:44 +00:00
|
|
|
case 'globe':
|
|
|
|
return <I.GlobeIcon {...options} />
|
|
|
|
case 'group':
|
|
|
|
return <I.GroupIcon {...options} />
|
|
|
|
case 'home':
|
|
|
|
return <I.HomeIcon {...options} />
|
|
|
|
case 'like':
|
|
|
|
return <I.LikeIcon {...options} />
|
2020-02-29 15:42:47 +00:00
|
|
|
case 'link':
|
|
|
|
return <I.LinkIcon {...options} />
|
2020-02-25 16:04:44 +00:00
|
|
|
case 'list':
|
|
|
|
return <I.ListIcon {...options} />
|
|
|
|
case 'loading':
|
|
|
|
return <I.LoadingIcon {...options} />
|
|
|
|
case 'media':
|
|
|
|
return <I.MediaIcon {...options} />
|
2020-02-29 15:42:47 +00:00
|
|
|
case 'missing':
|
|
|
|
return <I.MissingIcon {...options} />
|
|
|
|
case 'more':
|
|
|
|
return <I.MoreIcon {...options} />
|
2020-02-25 16:04:44 +00:00
|
|
|
case 'notifications':
|
|
|
|
return <I.NotificationsIcon {...options} />
|
2020-02-29 15:42:47 +00:00
|
|
|
case 'pin':
|
|
|
|
return <I.PinIcon {...options} />
|
|
|
|
case 'play':
|
|
|
|
return <I.PlayIcon {...options} />
|
2020-02-25 16:04:44 +00:00
|
|
|
case 'poll':
|
|
|
|
return <I.PollIcon {...options} />
|
|
|
|
case 'repost':
|
|
|
|
return <I.RepostIcon {...options} />
|
|
|
|
case 'search':
|
|
|
|
return <I.SearchIcon {...options} />
|
2020-03-02 22:26:25 +00:00
|
|
|
case 'search-alt':
|
|
|
|
return <I.SearchAltIcon {...options} />
|
2020-02-25 16:04:44 +00:00
|
|
|
case 'share':
|
|
|
|
return <I.ShareIcon {...options} />
|
|
|
|
case 'shop':
|
|
|
|
return <I.ShopIcon {...options} />
|
|
|
|
case 'subtract':
|
|
|
|
return <I.SubtractIcon {...options} />
|
|
|
|
case 'trends':
|
|
|
|
return <I.TrendsIcon {...options} />
|
|
|
|
case 'verified':
|
|
|
|
return <I.VerifiedIcon {...options} />
|
|
|
|
case 'warning':
|
|
|
|
return <I.WarningIcon {...options} />
|
|
|
|
default:
|
|
|
|
return <I.CircleIcon {...options} />
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|