UnlyEd/next-right-now

View on GitHub
src/stories/nrn/animation/Animated3Dots.stories.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import Animated3Dots from '@/common/components/animations/Animated3Dots';
import { GetFCProps } from '@/modules/core/ts/types/GetFCProps';
import {
  Meta,
  Story,
} from '@storybook/react/types-6-0';
import React from 'react';

type Props = GetFCProps<typeof Animated3Dots>;

export default {
  title: 'Next Right Now/Animation/Animated3Dots',
  component: Animated3Dots,
  argTypes: {
    fill: {
      control: 'color',
    },
  },
} as Meta;

export const DefaultExample: Story<Props> = (props) => <Animated3Dots {...props} />;
DefaultExample.args = {
  fill: 'blue',
};