Commit ab07c20a authored by Igor Stuev's avatar Igor Stuev Committed by GitHub

copy and external icons update (#1077)

parent 534d93fb
...@@ -34,7 +34,7 @@ const CopyToClipboard = ({ text, className, isLoading }: Props) => { ...@@ -34,7 +34,7 @@ const CopyToClipboard = ({ text, className, isLoading }: Props) => {
icon={ <CopyIcon/> } icon={ <CopyIcon/> }
w="20px" w="20px"
h="20px" h="20px"
color="gray.500" color="gray.400"
variant="simple" variant="simple"
display="inline-block" display="inline-block"
flexShrink={ 0 } flexShrink={ 0 }
......
...@@ -23,7 +23,7 @@ const LinkExternal = ({ href, children, className, isLoading }: Props) => { ...@@ -23,7 +23,7 @@ const LinkExternal = ({ href, children, className, isLoading }: Props) => {
return ( return (
<Link className={ className } fontSize="sm" lineHeight={ 5 } display="inline-block" alignItems="center" target="_blank" href={ href }> <Link className={ className } fontSize="sm" lineHeight={ 5 } display="inline-block" alignItems="center" target="_blank" href={ href }>
{ children } { children }
<Icon as={ arrowIcon } boxSize={ 4 } verticalAlign="middle"/> <Icon as={ arrowIcon } boxSize={ 4 } verticalAlign="middle" color="gray.400"/>
</Link> </Link>
); );
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment