diff --git a/app/components/ui/user_card/index.tsx b/app/components/ui/user_card/index.tsx index cc35832..c8b0803 100644 --- a/app/components/ui/user_card/index.tsx +++ b/app/components/ui/user_card/index.tsx @@ -1,7 +1,7 @@ import { Link } from '@remix-run/react'; +import { Check } from 'lucide-react'; import { useState } from 'react'; import { Avatar } from '../avatar'; -import { Card, CardContent, CardTitle } from '../card'; const getProfileIcon = (xid: string) => { // TODO: プロフィールアイコン取得(ライブラリ?) @@ -16,10 +16,6 @@ const getProfileIcon = (xid: string) => { } return 'https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_400x400.jpg'; }; -const CheckMark = () => { - // TODO: チェックマーク(画像を作るかライブラリからインポート?) - return <>✔; -}; export type UserCardProps = { user: { @@ -43,20 +39,20 @@ const UserCard = ({ onClick={handleClick} className='w-72 h-20' > - -
- -
- - @{xid} - - - {nickname} - -