import React from 'react' import { Box, BoxProps, Label } from '../index.js' export type StoryWrapperProps = BoxProps & { label: string children?: React.ReactNode, gap?: number } const StoryWrapper: React.FC = (props) => { const { label, children, gap = 16, ...other } = props return ( {children} ) } export default StoryWrapper