import React from 'react' import { Meta } from '@storybook/react' import { Stack } from './Stack' import { Box } from '../Box/Box' export default { title: 'Components/Stack', component: Stack, } as Meta const Content: React.FC = ({ children }) => ( {children} ) export const Basic = () => ( <> Default Default Default Default ) export const Horizontal = () => ( <> Horizontal Horizontal Horizontal Horizontal ) export const Wrapped = () => ( <> Horizontal / Wrapped Horizontal / Wrapped Horizontal / Wrapped Horizontal / Wrapped Horizontal / Wrapped Horizontal / Wrapped Horizontal / Wrapped Horizontal / Wrapped Horizontal / Wrapped Horizontal / Wrapped Horizontal / Wrapped Horizontal / Wrapped Horizontal / Wrapped ) export const Responsive = () => ( Responsive Responsive Responsive Responsive Responsive Responsive )