import { type ComponentType } from 'react' import { type LucideProps } from 'lucide-react' import { AppType } from '@penx/constants' import { cn } from '@penx/utils' interface FeatureEntryProps { className?: string name: string type: AppType icon: ComponentType onClick?: () => void } export function FeatureEntry({ name, type, icon: Icon, className, onClick, }: FeatureEntryProps) { return (
onClick?.()} >
{name}
) }