Skip to content

Commit

Permalink
chore: update opacity token
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraghazra committed Feb 28, 2024
1 parent 4382990 commit 56c3235
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { BreadcrumbContext } from './BreadcrumbContext';
import { BaseLink } from '~components/Link/BaseLink';
import { Text } from '~components/Typography';
import BaseBox from '~components/Box/BaseBox';
import { opacity } from '~tokens/global';

const BreadcrumbItem = ({
children,
Expand Down Expand Up @@ -40,7 +41,7 @@ const BreadcrumbItem = ({
<BaseLink
size={size}
color={color}
opacity={color !== 'primary' ? 0.5 : 1}
opacity={color !== 'primary' ? opacity[7] : 1}
icon={Icon}
href={href}
onClick={onClick}
Expand Down

0 comments on commit 56c3235

Please sign in to comment.