Skip to content

Commit

Permalink
fix: add missing styles to theme provider
Browse files Browse the repository at this point in the history
Fix button loading state.
  • Loading branch information
SashaShostyr authored and SimeonC committed Jun 5, 2024
1 parent fa0808f commit a9ea1a6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions system/react/src/structuredComponents/ThemeProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ import {
ltrSupport,
resetCss,
theme as themeStyles,
typography
typography,
keyframes
} from '@tablecheck/tablekit-core';
import * as React from 'react';

Expand All @@ -19,7 +20,8 @@ const globalStyles = css`
${ltrSupport};
${themeStyles};
${typography};
${constants}
${constants};
${keyframes};
`;

declare module '@emotion/react' {
Expand Down

0 comments on commit a9ea1a6

Please sign in to comment.