import React from 'react'; import { LucideIcon } from 'lucide-react'; interface SidebarItemProps { icon: LucideIcon; text: string; active: boolean; onClick: () => void; } export const SidebarItem: React.FC = ({ icon: Icon, text, active, onClick }) => (
{text}
);