File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 10
10
import React , { Component } from "react" ;
11
11
import Menu from "./Menu" ;
12
12
import SLDSPopover from "../SLDSPopover" ;
13
- import { Icon , InputIcon } from "./../SLDSIcons" ;
13
+ import { ButtonIcon , Icon , InputIcon } from "./../SLDSIcons" ;
14
14
import SLDSButton from "../SLDSButton" ;
15
15
import { KEYS , EventUtil } from "../utils" ;
16
16
import escapeRegExp from "lodash.escaperegexp" ;
@@ -320,7 +320,7 @@ class SLDSLookup extends React.Component {
320
320
let selectedItem = this . props . items [ this . state . selectedIndex ] . label ;
321
321
return < span tabIndex = "0" className = "slds-pill" ref = { "pill-" + this . state . selectedIndex } onKeyDown = { this . handlePillKeyDown . bind ( this ) } >
322
322
< span className = "slds-pill__label" >
323
- < Icon category = { this . props . iconCategory } name = { this . props . iconName ?this . props . iconName :this . props . type } className = { this . props . iconClasses } />
323
+ < Icon category = { this . props . iconCategory } name = { this . props . iconName ?this . props . iconName :this . props . type } className = { "slds-m-right--x-small " + this . props . iconClasses } />
324
324
{ selectedItem }
325
325
</ span >
326
326
< SLDSButton
@@ -331,6 +331,7 @@ class SLDSLookup extends React.Component {
331
331
iconSize = "medium"
332
332
onClick = { this . handleDeleteSelected . bind ( this ) }
333
333
ref = "clearSelectedItemButton"
334
+ className = "slds-m-left--x-small "
334
335
/>
335
336
</ span >
336
337
}
You can’t perform that action at this time.
0 commit comments