Есть *иконка* черного цвета,
но что делать, если мне нужна она белого цвета
Можно как то изменить цвет ?
"fill"
, иногда через атрибут/свойство "stroke". В зависимости от типа фигуры.<svg height="34" viewBox="0 0 24 24" width="34" xmlns="http://www.w3.org/2000/svg"><path d="M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z" fill="#fff"/></svg>
data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjM0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIzNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOC41OSAxNi4zNGw0LjU4LTQuNTktNC41OC00LjU5TDEwIDUuNzVsNiA2LTYgNnoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=
if (navigator.onLine) {
console.log('online');
} else {
console.log('offline');
}
Я догадался только до *такого*
{this.thematics.map(thematic => (
<div style={style} key={thematic.id}>
{thematic.id}
</div>
))}
constructor(props){
super(props)
this.state={
isLoading: true;
}
async componentDidMount(){
//invoke api
this.setState({isLoading:false})
}
}
render(){
const {isLoading} = this.state;
if (isLoading) {
return (
<div className={`spinner${isLoading ? "" : " d-none"}`}>
<Spinner fontSize={84} type="loading-3-quarters" />
</div>
);
}
return (
<React.Fragment>
...................
</React.Fragment>
}
{value >= 345 && value <= 500 ? <div>ничего нет</div> : null}
будет ещё больше таких промежутков
const messages = [
{
values: [ 1, 2, 4, 8, 16, 32, 64, 128, 256, 512 ],
message: 'hello, world!!',
},
{
values: [ [ 5, 15 ], [ 100, 200 ], 333, 444, 555 ],
message: 'fuck the world',
},
{
values: [ [ 50, 150 ], [ 250, 350 ], [ 666, 999 ] ],
message: 'fuck everything',
}
];
...
<div>
{messages
.filter(n => n.values.some(v => (
(v instanceof Array && v[0] <= value && value <= v[1]) ||
v === value
)))
.map(n => <div>{n.message}</div>)
}
</div>