Icon offline, svg in public und ein icon component erstellt
This commit is contained in:
17
components/icons/CogIcon.tsx
Normal file
17
components/icons/CogIcon.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import React from "react";
|
||||
|
||||
type Props = {
|
||||
className?: string;
|
||||
onClick?: () => void;
|
||||
};
|
||||
|
||||
export default function CogIcon({ className, onClick }: Props) {
|
||||
return (
|
||||
<img
|
||||
src="/icons/mdi--cog-outline.svg"
|
||||
alt="Einstellungen"
|
||||
className={className}
|
||||
onClick={onClick}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user