Files
CPLv4.0/components/icons/CogIcon.tsx
Ismail Ali b9651a53a9 esLint
2025-06-26 22:56:20 +02:00

21 lines
377 B
TypeScript

// /components/icons/CogIcon.tsx
import Image from "next/image";
type Props = {
className?: string;
onClick?: () => void;
};
const CogIcon: React.FC<Props> = ({ className, onClick }) => (
<Image
src="/icons/mdi--cog-outline.svg"
alt="Einstellungen"
className={className}
onClick={onClick}
width={24}
height={24}
/>
);
export default CogIcon;