Skip to content

Commit 2516d42

Browse files
authored
fix: Add more props to Throbber type definition (#429)
1 parent dcf43c2 commit 2516d42

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/fuselage/fuselage.d.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -433,9 +433,11 @@ declare module '@rocket.chat/fuselage' {
433433
type TileProps = BoxProps;
434434
export const Tile: ForwardRefExoticComponent<TileProps>;
435435

436-
type ThrobberProps = Omit<BoxProps, 'size'> & {
437-
size?: BoxProps['width'];
436+
type ThrobberProps = Omit<BoxProps, 'disabled' | 'size'> & {
437+
circleCount?: number;
438+
disabled?: boolean;
438439
inheritColor?: boolean;
440+
size?: BoxProps['width'];
439441
};
440442
export const Throbber: ForwardRefExoticComponent<ThrobberProps>;
441443

0 commit comments

Comments
 (0)