Skip to content

Commit

Permalink
Fixed empty state
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelpande committed Nov 28, 2024
1 parent 5cc20dc commit e5d0914
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import cl from 'clsx';

import styles from './EmptyState.module.scss';
import * as Illustrations from './Illustrations';
import { BreakpointsXsmallMaxWidth } from '../../../../style-dictionary/dist/js/fixed-variables.js';
import { BreakpointsXsmallMaxWidth } from '../../../../style-dictionary/dist/js/fixed-variables';

export interface EmptyStateProps {
svgName: keyof typeof Illustrations;
Expand Down Expand Up @@ -58,15 +58,15 @@ export function EmptyState({
<div
className={cl(
styles['empty-state-heading'],
styles['heading-small']
styles['heading-small'],
)}
>
{headingTxt}
</div>
<div
className={cl(
styles['empty-state-description'],
styles['bodyshort-medium']
styles['bodyshort-medium'],
)}
>
{descriptionTxt}
Expand Down

0 comments on commit e5d0914

Please sign in to comment.