import * as React from 'react'; import * as BoxStories from './Box.stories.mdx'; import Box, {COLOR} from './Box'; import { generateChromaticStory, responsivePropsStoryLabel, } from '../../chromatic/utils'; // @ts-ignore TS7006 export const ResponsiveProps = args => { return (

{responsivePropsStoryLabel('shadow', [true, false, null, true])}

box

{responsivePropsStoryLabel('noBorderRadius', [ false, true, null, false, ])}

box

{responsivePropsStoryLabel('border', [false, true, null, false])}

box

{responsivePropsStoryLabel('padding', ['xs', null, 'm', 'xl'])}

box
); }; ResponsiveProps.parameters = { chromatic: { viewports: [680, 900, 1100, 1500], }, }; export const Default = generateChromaticStory(BoxStories); const {includeStories, ...meta} = BoxStories.default; export default meta;