From a9ea1a648fd073ea67a022fd74f349bc1b8f2c2c Mon Sep 17 00:00:00 2001 From: Alexandr Shostyr Date: Wed, 5 Jun 2024 16:06:08 +0300 Subject: [PATCH] fix: add missing styles to theme provider Fix button loading state. --- system/react/src/structuredComponents/ThemeProvider.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/system/react/src/structuredComponents/ThemeProvider.tsx b/system/react/src/structuredComponents/ThemeProvider.tsx index d07d8e03..e49c5a2f 100644 --- a/system/react/src/structuredComponents/ThemeProvider.tsx +++ b/system/react/src/structuredComponents/ThemeProvider.tsx @@ -9,7 +9,8 @@ import { ltrSupport, resetCss, theme as themeStyles, - typography + typography, + keyframes } from '@tablecheck/tablekit-core'; import * as React from 'react'; @@ -19,7 +20,8 @@ const globalStyles = css` ${ltrSupport}; ${themeStyles}; ${typography}; - ${constants} + ${constants}; + ${keyframes}; `; declare module '@emotion/react' {