Skip to content

Commit

Permalink
fix: price card title (#836)
Browse files Browse the repository at this point in the history
  • Loading branch information
qradle-yndx authored Feb 28, 2024
1 parent 3e42b01 commit b70f80d
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/sub-blocks/PriceCard/PriceCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@ import React from 'react';

import Check from '@gravity-ui/icons/Check';

import {BackgroundImage, Button, CardBase, ContentList, Link as LinkBlock} from '../../components';
import {
BackgroundImage,
Button,
CardBase,
ContentList,
HTML,
Link as LinkBlock,
} from '../../components';
import {PriceCardProps} from '../../models';
import {block} from '../../utils';

Expand Down Expand Up @@ -30,7 +37,7 @@ const PriceCard = (props: PriceCardProps) => {
<BackgroundImage className={b('background')} style={{backgroundColor}} />
<div className={b('content', {theme})}>
<div className={b('info')}>
<div className={b('title')}>{title}</div>
<HTML className={b('title')}>{title}</HTML>
<div className={b('price')}>
<div>
<span className={b('price-value')}>{price}</span>
Expand Down

0 comments on commit b70f80d

Please sign in to comment.