Web: Studio: Homepage: Added styles for external link icon

This commit is contained in:
gectokot 2021-12-08 15:09:57 +03:00
parent 9b604dbd57
commit b35c06f56e

View File

@ -0,0 +1,13 @@
import ExternalLinkIcon from "../../../../public/images/external.link.react.svg";
import styled from "styled-components";
const StyledExternalLinkIcon = styled(ExternalLinkIcon)`
height: 12px;
width: 12px;
margin: 0 4px;
path {
fill: ${(props) => props.color};
}
`;
export default StyledExternalLinkIcon;