File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -365,7 +365,7 @@ export const Icon = createFC<IconProps, { ICONS: typeof ICONS }>(
365365 const {
366366 label,
367367 circleContainer,
368- containerClassName,
368+ containerClassName : containerClassName_ ,
369369 fillColor,
370370 title,
371371 currentColor,
@@ -398,8 +398,8 @@ export const Icon = createFC<IconProps, { ICONS: typeof ICONS }>(
398398
399399 const fillIconColor = getIconColor ( fillColor , category , icon ) ;
400400
401- const ccontainerClassName = classnames (
402- containerClassName ,
401+ const containerClassName = classnames (
402+ containerClassName_ ,
403403 'slds-icon_container' ,
404404 circleContainer ? 'slds-icon_container_circle' : null ,
405405 category === 'utility'
@@ -415,7 +415,7 @@ export const Icon = createFC<IconProps, { ICONS: typeof ICONS }>(
415415 const iconTitle = title || label ;
416416
417417 return (
418- < span className = { ccontainerClassName } title = { iconTitle } >
418+ < span className = { containerClassName } title = { iconTitle } >
419419 < SvgIcon
420420 ref = { svgIconRefCallback }
421421 { ...rprops }
You can’t perform that action at this time.
0 commit comments