Skip to content

Commit 2c4e866

Browse files
authored
Fix/ margin modifiers for skeleton (#1983)
1 parent d846377 commit 2c4e866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/skeletonView/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ class SkeletonView extends Component<InternalSkeletonViewProps, SkeletonState> {
368368
const data = showContent && _.isFunction(renderContent) ? renderContent(this.props) : children;
369369

370370
return (
371-
<View style={style} {...this.getAccessibilityProps('Loading content')}>
371+
<View style={style} {...this.getAccessibilityProps('Loading content')} {...others}>
372372
<ShimmerPlaceholder {...this.getDefaultSkeletonProps()} {...others}>
373373
{showContent && data}
374374
</ShimmerPlaceholder>

0 commit comments

Comments
 (0)