Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Meta, StoryObj } from '@storybook/react';
import { Stat } from './';
const meta: Meta< typeof Stat > = {
title: 'client/dashboard/Stat',
component: Stat,
tags: [ 'autodocs' ],
};
export default meta;
type Story = StoryObj< typeof Stat >;
export const Default: Story = {
args: {
density: 'low',
strapline: 'Views',
metric: '1.3 M',
description: '33% left',
descriptionAlignment: 'start',
progressValue: 15,
},
};