From 848aa1d8119a5d85656c0706df2ad87eb38cbde4 Mon Sep 17 00:00:00 2001 From: Manas Nagelia <84251015+Manas-Nagelia@users.noreply.github.com> Date: Tue, 1 Nov 2022 20:16:00 -0400 Subject: [PATCH] Added tag around {children} in ListItem.tsx --- src/mantine-core/src/List/ListItem/ListItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mantine-core/src/List/ListItem/ListItem.tsx b/src/mantine-core/src/List/ListItem/ListItem.tsx index c388ae2ac7d..b74d0ca04d0 100644 --- a/src/mantine-core/src/List/ListItem/ListItem.tsx +++ b/src/mantine-core/src/List/ListItem/ListItem.tsx @@ -33,7 +33,7 @@ export function ListItem({ className, children, icon, ...others }: ListItemProps >
{_icon && {_icon}} - {children} + {children}
);