featureBadge.stories.js 389 B

1234567891011121314151617181920
  1. import styled from '@emotion/styled';
  2. import FeatureBadge from 'app/components/featureBadge';
  3. export default {
  4. title: 'Core/Tags/FeatureBadge',
  5. component: FeatureBadge,
  6. };
  7. export const Default = () => (
  8. <Wrapper>
  9. <FeatureBadge type="beta" />
  10. <FeatureBadge type="alpha" />
  11. <FeatureBadge type="new" />
  12. </Wrapper>
  13. );
  14. const Wrapper = styled('div')`
  15. display: grid;
  16. `;