import { Meta, StoryObj } from '@storybook/react'; import { DownloadFile } from './DownloadFile'; const meta: Meta = { component: DownloadFile, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { heading: 'Bank statement aug 10 2023.xlsx', }, };