We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45f992d commit 96c011aCopy full SHA for 96c011a
1 file changed
src/pages/inbox/report/ReportActionCompose/ExpandCollapseButton.tsx
@@ -11,11 +11,17 @@ import useThemeStyles from '@hooks/useThemeStyles';
11
import CONST from '@src/CONST';
12
13
type ExpandCollapseButtonProps = ViewProps & {
14
+ /** Whether the full composer is available */
15
isFullComposerAvailable: boolean;
16
+ /** Whether the composer is full size */
17
isComposerFullSize: boolean;
18
+ /** The report ID */
19
reportID: string;
20
+ /** Function to raise the scroll is likely layout triggered */
21
raiseIsScrollLikelyLayoutTriggered: () => void;
22
+ /** Function to set the composer full size */
23
setIsComposerFullSize: (reportID: string, isFullSize: boolean) => void;
24
+ /** Whether the button is disabled */
25
disabled?: boolean;
26
};
27
0 commit comments