import React from 'react';
import { StatusWrapper } from '../src/lib/components/statuswrapper/Statuswrapper.component';
import { Wrapper, Title } from './common';
import styled from 'styled-components';
import { Icon } from '../src/lib/components/icon/Icon.component';
import {
BasicText,
SecondaryText,
LargerText,
EmphaseText,
StatusText,
SmallerText,
ChartTitleText,
} from '../src/lib/components/text/Text.component';
const PreviewWrapper = styled(Wrapper)`
min-height: 0;
`;
export default {
title: 'Components/Data Display/StatusWrapper',
component: StatusWrapper,
args: {
children: ,
},
argTypes: {
children: {
control: false,
description: 'The element to apply the status to',
table: {
type: { summary: 'ReactNode' },
},
},
},
};
export const Playground = {};
export const Default = {
render: ({}) => {
return (
Status Wrapper
This is a text
This is a text
This is a text
This is a text
This is a text
This is a text
This is a text
);
},
};