Skip to content

Instantly share code, notes, and snippets.

@chenyong
Created February 27, 2019 07:48
Show Gist options
  • Save chenyong/b8c09ab1417ce3080e683e22985943fb to your computer and use it in GitHub Desktop.
Save chenyong/b8c09ab1417ce3080e683e22985943fb to your computer and use it in GitHub Desktop.
Icons really used in antd
check-circle
check-circle-o
close-circle
close-circle-o
default
down
exclamation-circle
exclamation-circle-o
info-circle
info-circle-o
left
right
up
android
apple
appstore
appstore-o
arrow-down
arrow-up
bar-chart
bars
calendar
caret-down
caret-right
check
check-circle
close
close-circle
cloud-o
custom
delete">
desktop
double-left
double-right
down
edit
ellipsis
exclamation-circle
eye-o
file
frown-o
heart
home
home-o
inbox
info-circle
laptop
left
like
loading
lock
mail
meh
meh-o
message
minus
notification
picture
pie-chart
plus
question-circle
redo
right
search
setting
setting-fill
shop
smile
smile-o
solution
star
sync
team
up
upload
user
video-camera
xxx
close
<Icon type={`check${iconType}`} theme={type === 'line' ? 'filled' : 'outlined'} />
<Icon type={`close${iconType}`} theme={type === 'line' ? 'filled' : 'outlined'} />
<Icon type={expanded ? 'folder-open' : 'folder'} />
<Icon type={file.status === 'uploading' ? 'loading' : 'paper-clip'} />
<Icon type={iconType} theme={iconType === 'loading' ? 'outlined' : 'filled'} />
<Icon type={selected ? 'frown' : 'frown-o'} />
<Icon type={this.state.collapsed ? 'menu-unfold' : 'menu-fold'} />
<Icon type={this.state.expand ? 'up' : 'down'} />
<Icon type={this.state.loading ? 'loading' : 'plus'} />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment