跳至主要內容

图标组件

chanchaw小于 1 分钟react

源码

const Icon = ({type, width, height}) => {
    if(!width) width = 20
    if(!height) height = 20
    return (
        <img
            src={`https://yjy-teach-oss.oss-cn-beijing.aliyuncs.com/reactbase/ka/${type}.svg`}
            alt="icon" 
            style = {{
                width: width, height: height
            }}
        ></img>
    )
}

export default Icon

使用

<Icon type={item.useFor}/>