We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcf43c2 commit 2516d42Copy full SHA for 2516d42
packages/fuselage/fuselage.d.ts
@@ -433,9 +433,11 @@ declare module '@rocket.chat/fuselage' {
433
type TileProps = BoxProps;
434
export const Tile: ForwardRefExoticComponent<TileProps>;
435
436
- type ThrobberProps = Omit<BoxProps, 'size'> & {
437
- size?: BoxProps['width'];
+ type ThrobberProps = Omit<BoxProps, 'disabled' | 'size'> & {
+ circleCount?: number;
438
+ disabled?: boolean;
439
inheritColor?: boolean;
440
+ size?: BoxProps['width'];
441
};
442
export const Throbber: ForwardRefExoticComponent<ThrobberProps>;
443
0 commit comments