From 41033c5241dfc7bcc24aeb2f0364b01a0d8eec36 Mon Sep 17 00:00:00 2001 From: Andre H Date: Thu, 7 Mar 2024 14:23:11 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20feat:=20reskin=20"no=20rep?= =?UTF-8?q?ository=20found"=20component?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../create/RepositoryList/RepositoryList.tsx | 26 +++++++++---------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/packages/frontend/src/components/projects/create/RepositoryList/RepositoryList.tsx b/packages/frontend/src/components/projects/create/RepositoryList/RepositoryList.tsx index 14af57e6..5b96ce37 100644 --- a/packages/frontend/src/components/projects/create/RepositoryList/RepositoryList.tsx +++ b/packages/frontend/src/components/projects/create/RepositoryList/RepositoryList.tsx @@ -3,17 +3,17 @@ import { Octokit } from 'octokit'; import assert from 'assert'; import { useDebounce } from 'usehooks-ts'; -import { Button, Typography } from '@material-tailwind/react'; - import { ProjectRepoCard } from 'components/projects/create/ProjectRepoCard'; import { GitOrgDetails, GitRepositoryDetails } from 'types'; import { ChevronGrabberHorizontal, GithubIcon, + RefreshIcon, SearchIcon, } from 'components/shared/CustomIcon'; import { Select, SelectOption } from 'components/shared/Select'; import { Input } from 'components/shared/Input'; +import { Button } from 'components/shared/Button'; const DEFAULT_SEARCHED_REPO = ''; const REPOS_PER_PAGE = 5; @@ -160,18 +160,16 @@ export const RepositoryList = ({ octokit }: RepositoryListProps) => { ))} ) : ( -
-
- No repository found - -
+
+

No repository found

+
)}