Icon: Replace font awesome icons where possible (#28757)

* Replace font awesome icons where possible

* Implement small updates
This commit is contained in:
Ivana Huckova
2020-11-04 13:34:40 +01:00
committed by GitHub
parent 45a34a30b2
commit 0f7a470138
21 changed files with 37 additions and 55 deletions

View File

@@ -3,6 +3,7 @@ import React, { Component } from 'react';
import { CloudWatchLogsQuery } from '../types';
import { PanelData } from '@grafana/data';
import { Icon } from '@grafana/ui';
import { encodeUrl, AwsUrl } from '../aws_url';
import { CloudWatchDatasource } from '../datasource';
@@ -58,7 +59,7 @@ export default class CloudWatchLink extends Component<Props, State> {
const { href } = this.state;
return (
<a href={href} target="_blank" rel="noopener">
<i className="fa fa-share-square-o" /> CloudWatch Logs Insights
<Icon name="share-alt" /> CloudWatch Logs Insights
</a>
);
}