import * as React from "react"; import { StoryFn, Meta } from "@storybook/react"; import UIKitThemeProvider from "../components/UIKitThemeProvider"; import StyleTile from "./helpers/StyleTile"; import { themeBgDisabled, themeBgHover, themeBgPrimary, themeBgPrimaryInverted, themeBorder, themeBorderHeavy, themeBrandPrimary, themeError, themeTextColorDisabled, themeTextColorPrimary, themeTextColorPrimaryInverted, themeTextColorSecondary } from "../../design-tokens/build/js/designTokens"; export default { title: "Utils/UIKitThemeProvider", component: UIKitThemeProvider, parameters: { controls: { disable: true } } }; const Template: StoryFn = args => ( ); export const LightMode = { render: Template };