I have this component: ```jsx export function NavigationBarItem(props: { icon: JSX.Element }) { return <div class="m-4 h-8 w-8">{props.icon}</div>; } ``` How do I set the icons size?