Skip to content

Commit

Permalink
Changes to custody-labels.js (#19038)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvv173 authored May 8, 2023
1 parent 37b481f commit c4e7b55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/components/institutional/custody-labels/custody-labels.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import React from 'react';
import PropTypes from 'prop-types';
import { Text, Label } from '../../component-library';
import {
TEXT_TRANSFORM,
TextTransform,
BackgroundColor,
TextColor,
FONT_WEIGHT,
FontWeight,
BorderRadius,
TypographyVariant,
} from '../../../helpers/constants/design-system';
Expand All @@ -25,7 +25,7 @@ const CustodyLabels = (props) => {
{filteredLabels.map((item) => (
<Text
key={item.key}
textTransform={TEXT_TRANSFORM.UPPERCASE}
textTransform={TextTransform.Uppercase}
className="custody-label"
style={background ? { background } : {}}
marginTop={1}
Expand All @@ -37,7 +37,7 @@ const CustodyLabels = (props) => {
paddingRight={2}
backgroundColor={BackgroundColor.backgroundAlternative}
color={TextColor.textMuted}
fontWeight={FONT_WEIGHT.NORMAL}
fontWeight={FontWeight.Normal}
borderRadius={BorderRadius.SM}
variant={TypographyVariant.H9}
>
Expand Down

0 comments on commit c4e7b55

Please sign in to comment.