- Adjusted indentation and formatting in login, permissions, profile, and security pages for better readability. - Enhanced the clarity of conditional statements and function calls in permissions and profile components. - Updated type definitions in vite-env.d.ts for better code structure. - Cleaned up array mapping syntax in ProductTest.php for consistency.
10 lines
246 B
TypeScript
10 lines
246 B
TypeScript
import type { ImgHTMLAttributes } from 'react';
|
|
|
|
import logo from '../../../public/assets/logo.png';
|
|
|
|
export default function AppLogoIcon(
|
|
props: ImgHTMLAttributes<HTMLImageElement>,
|
|
) {
|
|
return <img src={logo} alt="Logo" {...props} />;
|
|
}
|