List: filter some of the props.

master
Tom Hacohen 2017-12-16 13:57:19 +00:00
parent b76ac00d78
commit b93049f7a0
1 changed files with 12 additions and 5 deletions

View File

@ -54,15 +54,22 @@ export const ListSubheader = pure((props: any) => (
</li>
));
export const ListDivider = pure((props: any) => (
<li>
<hr className={'ListDivider ' + (props.inset ? 'ListDivider-inset' : '')} {...props} />
</li>
));
export const ListDivider = pure((_props: any) => {
const {
inset,
...props,
} = _props;
return (
<li>
<hr className={'ListDivider ' + (inset ? 'ListDivider-inset' : '')} {...props} />
</li>
);
});
export const ListItem = pure((_props: any) => {
const {
leftIcon,
rightIcon,
primaryText,
secondaryText,
children,