List: filter some of the props.
parent
b76ac00d78
commit
b93049f7a0
17
src/List.tsx
17
src/List.tsx
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue