diff --git a/packages/react/src/components/StructuredList/StructuredList.js b/packages/react/src/components/StructuredList/StructuredList.js index 4f6d861abccc..d26ef8668dc1 100644 --- a/packages/react/src/components/StructuredList/StructuredList.js +++ b/packages/react/src/components/StructuredList/StructuredList.js @@ -51,7 +51,14 @@ export class StructuredListWrapper extends Component { }; render() { - const { children, selection, className, ariaLabel, ...other } = this.props; + const { + children, + selection, + className, + ariaLabel, + border: _border, + ...other + } = this.props; const classes = classNames(`${prefix}--structured-list`, className, { [`${prefix}--structured-list--selection`]: selection,