import { LucideIcon } from "lucide-react"; import React from "react"; interface SettingMenuItemProps { text: string; icon: LucideIcon; isSelected: boolean; onClick: () => void; } const SectionMenuItem: React.FC = ({ text, icon: IconComponent, isSelected, onClick }) => { return (
{text}
); }; export default SectionMenuItem;