Skip to content
This repository was archived by the owner on Jul 29, 2025. It is now read-only.

Commit baca67b

Browse files
Maxim-MazurokMatt Goo
authored andcommitted
fix(fab): Made initRipple and unbounded props optional (#854)
1 parent 755944d commit baca67b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/fab/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ export interface FabProps extends InjectedProps<HTMLButtonElement>,
3333
icon?: React.ReactElement<HTMLElement>;
3434
textLabel?: string;
3535
className?: string;
36-
initRipple: React.Ref<HTMLButtonElement>;
37-
unbounded: boolean;
36+
initRipple?: React.Ref<HTMLButtonElement>;
37+
unbounded?: boolean;
3838
}
3939

4040
const Icon: React.FunctionComponent<{icon?: React.ReactElement<HTMLElement>}> = ({icon}) => {

0 commit comments

Comments
 (0)