Files
Groupware/Project/frontend/src/components/layout/AmkorLogo.tsx
backuppc c9b5d756e1 feat: React 프론트엔드 기능 대폭 확장
- 월별근무표: 휴일/근무일 관리, 자동 초기화
- 메일양식: 템플릿 CRUD, To/CC/BCC 설정
- 그룹정보: 부서 관리, 비트 연산 기반 권한 설정
- 업무일지: 수정 성공 메시지 제거, 오늘 근무시간 필터링 수정
- 웹소켓 메시지 type 충돌 버그 수정

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-27 17:25:31 +09:00

23 lines
520 B
TypeScript

interface AmkorLogoProps {
className?: string;
height?: number;
}
export function AmkorLogo({ className = '', height = 48 }: AmkorLogoProps) {
return (
<svg
viewBox="0 0 50 50"
height={height}
className={className}
>
{/* 흰색 원 배경 */}
<circle cx="25" cy="25" r="23" fill="white" />
{/* 파란색 A */}
<path
d="M25 8 L38 40 L32 40 L29 32 L16 32 L16 26 L27 26 L22.5 14 L17 28 L11 40 L5 40 L18 8 Z"
fill="#1a5091"
/>
</svg>
);
}