From 8cb2e3d801fe03f2159d68e8118bc82d5a16a6e4 Mon Sep 17 00:00:00 2001 From: Shawna Monero <66325812+smonero@users.noreply.github.com> Date: Mon, 29 Aug 2022 07:22:29 -0700 Subject: [PATCH] FE: core: export keyframes and css so we can animate things (#2355) * xport keyframes and css so we can animate things in private * ok --- frontend/packages/core/src/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/packages/core/src/index.tsx b/frontend/packages/core/src/index.tsx index 964375c423..ab54cadd15 100644 --- a/frontend/packages/core/src/index.tsx +++ b/frontend/packages/core/src/index.tsx @@ -52,6 +52,8 @@ export { default as Code } from "./text"; export { Typography } from "./typography"; export { default as ClutchApp } from "./AppProvider"; +export { css as EMOTION_CSS, keyframes as EMOTION_KEYFRAMES } from "@emotion/react"; + export type { BaseWorkflowProps, WorkflowConfiguration } from "./AppProvider/workflow"; export type { ButtonProps } from "./button"; export type { CardHeaderSummaryProps } from "./card";