import React, {FC, PropsWithChildren} from "react"; import {cn} from "../../utils/cn"; export type ListItemProps = { icon?: React.ReactNode, className?: string, } export const ListItem: FC = ({children, icon, className}) => { return
  • {icon ||
    }
    {children}
  • }