diff --git a/src/List.tsx b/src/List.tsx index cfc8c16..7d99942 100644 --- a/src/List.tsx +++ b/src/List.tsx @@ -54,15 +54,22 @@ export const ListSubheader = pure((props: any) => ( )); -export const ListDivider = pure((props: any) => ( -
  • -
    -
  • -)); +export const ListDivider = pure((_props: any) => { + const { + inset, + ...props, + } = _props; + return ( +
  • +
    +
  • + ); +}); export const ListItem = pure((_props: any) => { const { leftIcon, + rightIcon, primaryText, secondaryText, children,