import React from 'react';
import { ThemeContext, TSupportedThemes } from '../../theme';
import { longText } from '../../../.storybook/utils';
import BackgroundContainer, { IBackgroundContainer } from '.';
import { themes } from '../../lib/constants';
export default {
title: 'BackgroundContainer'
};
export const Basic = () => ;
export const Loading = () => ;
export const Text = () => ;
export const LongText = () => ;
interface ThemeStoryProps extends IBackgroundContainer {
theme: TSupportedThemes;
}
const ThemeStory = ({ theme, ...props }: ThemeStoryProps) => (
);
export const DarkThemeLoading = () => ;
export const DarkThemeText = () => ;
export const BlackThemeLoading = () => ;
export const BlackThemeText = () => ;