Skip to content

Commit

Permalink
Fix regression in Animated3Dots.tsx (fill became required for no reas…
Browse files Browse the repository at this point in the history
…on) + improve SB doc
  • Loading branch information
Vadorequest committed Jan 17, 2021
1 parent 7fae165 commit 01dd3df
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/svg/Animated3Dots.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import React from 'react';

export type Props = {
fill: string;
/**
* Color of the dots.
*
* @default white
*/
fill?: string;
};

/**
Expand Down
5 changes: 5 additions & 0 deletions src/components/svg/AnimatedTextBubble.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ import {
import React from 'react';

export type Props = {
/**
* Color of the dots.
*
* @default
*/
fill?: string;
};

Expand Down

1 comment on commit 01dd3df

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.