refactor: clean up duplicate imports from icon migration

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-21 11:09:17 +05:30
parent 6f40b82579
commit 2ace6efae5
3 changed files with 2 additions and 9 deletions

View File

@@ -4,8 +4,6 @@ import { faCalendarPlus, faXmark } from '@fortawesome/pro-duotone-svg-icons';
import type { FC, HTMLAttributes } from 'react';
const CalendarPlus02: FC<HTMLAttributes<HTMLOrSVGElement>> = ({ className }) => <FontAwesomeIcon icon={faCalendarPlus} className={className} />;
import { faXmark } from '@fortawesome/pro-duotone-svg-icons';
const XClose: FC<{ className?: string }> = ({ className }) => <FontAwesomeIcon icon={faXmark} className={className} />;
import { Input } from '@/components/base/input/input';
import { Select } from '@/components/base/select/select';