fix(icons): scope white svgs to Icon components
This commit is contained in:
parent
f5dba929a5
commit
92e7be34e3
|
@ -33,7 +33,7 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
svg {
|
.jitsi-icon svg {
|
||||||
fill: white;
|
fill: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ type Props = {
|
||||||
/**
|
/**
|
||||||
* Class name for the web platform, if any.
|
* Class name for the web platform, if any.
|
||||||
*/
|
*/
|
||||||
className?: string,
|
className: string,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Color of the icon (if not provided by the style object).
|
* Color of the icon (if not provided by the style object).
|
||||||
|
@ -68,7 +68,7 @@ export default function Icon(props: Props) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container
|
<Container
|
||||||
className = { className }
|
className = { `jitsi-icon ${className}` }
|
||||||
style = { restStyle }>
|
style = { restStyle }>
|
||||||
<IconComponent
|
<IconComponent
|
||||||
fill = { calculatedColor }
|
fill = { calculatedColor }
|
||||||
|
@ -79,3 +79,6 @@ export default function Icon(props: Props) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Icon.defaultProps = {
|
||||||
|
className: ''
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in New Issue