UNPKG

react-pdf-builder

Version:
10 lines (9 loc) 392 B
import type { Meta, StoryObj } from '@storybook/react'; import React from 'react'; import { BoxProps } from '../../components/layout/Box'; declare const StoryComponent: (props: BoxProps) => React.JSX.Element; declare const meta: Meta<typeof StoryComponent>; export default meta; type Story = StoryObj<typeof meta>; export declare const WithoutGap: Story; export declare const WithGap: Story;