Skip to content

salt-ui/salt-icon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

salt-icon

预览

image

Install

tnpm install salt-icon --save

使用

  • 方式一(推荐):
import Eye from 'salt-icon/lib/Eye';

render() {
    return <Eye />
}
  • 方式二:
import Icon from 'salt-icon';

render() {
    return <Icon name='icon-name'/>
}
  • 方法三:(不推荐)
import Icon from 'salt-icon/dist/Symbol';

render() {
    return <Icon name='icon-name'/>
}

使用 symbol & use 的方式使用 Icon,主要是为了兼容老的方案

Props

className

描述:自定义的扩展样式名称

类型:String

默认:''

name

描述:icon所对应的svg文件的命名。

注意:写名称即可,不是写路径。

类型:String

默认:''

fill

描述:icon 颜色

类型:String

默认:'#000'

width

描述:icon 宽度

类型:Number/String

默认:'32px'

height

描述:icon 高度

类型:Number/String

默认:'32px'

onClick

描述:事件

类型:Function

默认:() => {}

Links

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages