Skip to content

Commit

Permalink
Fix: omitted types from progress-indictator
Browse files Browse the repository at this point in the history
  • Loading branch information
HZ991 committed Nov 18, 2024
1 parent 6da8266 commit 4963f21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ReactNode } from 'react';

import { IconProps } from '../icon/icon.types.js';

export type ProgressIndicatorProps = IconProps & {
export type ProgressIndicatorProps = Omit<IconProps, 'copyrightYear' | 'look'> & {
/**
* children prop
* @default false
Expand Down

0 comments on commit 4963f21

Please sign in to comment.