Skip to content

Commit

Permalink
fix(Spinner): drop useless prop
Browse files Browse the repository at this point in the history
  • Loading branch information
LamaEats committed Oct 17, 2023
1 parent 33b0b07 commit b707175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Spinner/Spinner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const StyledLoaderIcon = styled(IconLoaderOutline)`
transform: translate3d(-50%, -50%, 0);
`;

export interface SpinnerProps extends BaseIconProps {
export interface SpinnerProps extends Omit<BaseIconProps, 'value'> {
animationDuration?: number; // in seconds
}

Expand Down

0 comments on commit b707175

Please sign in to comment.