dstpabuaran.com/resources/js/components/app-logo-icon.tsx
Yoga Pangestu 23cc327190 Refactor code for improved readability and consistency across multiple files
- 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.
2026-08-01 10:14:47 +07:00

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} />;
}