diff --git a/resources/js/components/app-logo-icon.tsx b/resources/js/components/app-logo-icon.tsx index 0c31215..4c42534 100644 --- a/resources/js/components/app-logo-icon.tsx +++ b/resources/js/components/app-logo-icon.tsx @@ -1,13 +1,7 @@ -import type { SVGAttributes } from 'react'; +import type { ImgHTMLAttributes } from 'react'; -export default function AppLogoIcon(props: SVGAttributes) { - return ( - - - - ); +import logo from '../../../public/assets/logo.png'; + +export default function AppLogoIcon(props: ImgHTMLAttributes) { + return Logo; } diff --git a/resources/js/components/app-logo.tsx b/resources/js/components/app-logo.tsx index ecee5f1..01c8971 100644 --- a/resources/js/components/app-logo.tsx +++ b/resources/js/components/app-logo.tsx @@ -7,8 +7,8 @@ export default function AppLogo() { return ( <> -
- +
+