Remove style prop from Link
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { colors } from '@0xproject/react-shared';
|
||||
import { colors, Link } from '@0xproject/react-shared';
|
||||
import { Source } from '@0xproject/types';
|
||||
import * as React from 'react';
|
||||
|
||||
@@ -13,9 +13,9 @@ export const SourceLink = (props: SourceLinkProps) => {
|
||||
const sourceCodeUrl = `${props.sourceUrl}/${src.fileName}#L${src.line}`;
|
||||
return (
|
||||
<div className="pt2" style={{ fontSize: 14 }}>
|
||||
<a href={sourceCodeUrl} target="_blank" className="underline" style={{ color: colors.grey }}>
|
||||
Source
|
||||
</a>
|
||||
<Link to={sourceCodeUrl} shouldOpenInNewTab={true} textDecoration="underline" fontColor={colors.grey}>
|
||||
{'Source'}
|
||||
</Link>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
Reference in New Issue
Block a user