Skip to content

Commit f61df8c

Browse files
author
Kubit
committed
Include dragIcon on actionBottomSheet
1 parent 5b44fa4 commit f61df8c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/components/actionBottomSheet/actionBottomSheetStandAlone.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const ActionBottomSheetStandAloneComponent = (
5555
>
5656
{props.dragIcon && isMobileOrTablet && (
5757
<DraggableIcon ref={props.dragIconRef} data-drag-icon styles={props.styles}>
58-
<ElementOrIcon {...props.dragIcon} />
58+
<ElementOrIcon customIconStyles={props.styles.dragIcon} {...props.dragIcon} />
5959
</DraggableIcon>
6060
)}
6161
{hasHeader && (

src/components/actionBottomSheet/types/actionBottomSheetTheme.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export type ActionBottomSheetVariantStylesType = {
2121
headerContent?: CommonStyleType;
2222
content?: CommonStyleType;
2323
popoverVariant?: string;
24+
dragIcon?: IconTypes;
2425
dragIconContainer?: CommonStyleType;
2526
};
2627

0 commit comments

Comments
 (0)