import React from 'react'; type DefaultDivProps = JSX.IntrinsicElements['div']; export interface SidebarItemProps extends DefaultDivProps { title: string; description: string; icon: JSX.Element; selected?: boolean; } export const SidebarItem = ({ title, description, selected, icon, ...props }: SidebarItemProps): JSX.Element => { return (