Shared: fix after merge

This commit is contained in:
Viktor Fomin 2024-07-24 15:31:21 +03:00
parent 28c03fdb6b
commit 14086fc550

View File

@ -29,7 +29,7 @@ import styled, { css } from "styled-components";
import { Text } from "../text"; import { Text } from "../text";
import { Base } from "../../themes"; import { Base, globalColors } from "../../themes";
const StyledTag = styled.div<{ const StyledTag = styled.div<{
tagMaxWidth?: string; tagMaxWidth?: string;
@ -111,11 +111,11 @@ const StyledTag = styled.div<{
css` css`
svg { svg {
path[fill] { path[fill] {
fill: #fff; fill: ${globalColors.white};
} }
path[stroke] { path[stroke] {
stroke: #fff; stroke: ${globalColors.white};
} }
`} `}
} }