import type { Meta, StoryObj } from '@storybook/angular'; import { UploadStatusIconComponent } from './upload-status-icon.component'; const meta: Meta = { title: 'Design System/Atoms/UploadStatusIcon', component: UploadStatusIconComponent, render: (args) => ({ props: args, template: ``, }), }; export default meta; type Story = StoryObj; export const Complete: Story = { args: { status: 'complete' } }; export const Failed: Story = { args: { status: 'failed' } }; export const Uploading: Story = { args: { status: 'uploading' } };