diff --git a/src/pages/Team/Create.tsx b/src/pages/Team/Create.tsx
index 38445ae..634fb28 100644
--- a/src/pages/Team/Create.tsx
+++ b/src/pages/Team/Create.tsx
@@ -3,6 +3,7 @@ import { Sidebar } from '@/components/common/sidebar';
import { Input } from '@/components/common/Input';
import { SelectBar } from '@/components/common/SelectBar';
import { useState } from 'react';
+import { XButton } from '@/components/common/XButton';
type ProjectType = '동아리' | '팀 프로젝트' | '개인 프로젝트' | '기타';
const projectKinds: ProjectType[] = ['동아리', '팀 프로젝트', '개인 프로젝트', '기타'];
@@ -21,7 +22,12 @@ export const TeamCreate = () => {