Skip to content

Commit

Permalink
⚡️ :: (#118) img 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
kimulchan committed May 31, 2022
1 parent fdfc488 commit c09fca5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/home/cards/StudentCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import styled from "@emotion/styled";
import DefaultBox from "@src/components/common/defaultBox";
import { StudentType } from "@src/utils/interfaces/student";
import React, { FC } from "react";

import Image from "next/image";
const StudentCard: FC<StudentType> = ({
user_id,
name,
Expand All @@ -19,7 +19,7 @@ const StudentCard: FC<StudentType> = ({
<>
<DefaultBox width={1224} height={100}>
<StudentBox>
<img src={profile_image_url} alt='' />
<img width={60} height={60} src={profile_image_url} alt='' />
<User>
<p>{name}</p>
<p>
Expand Down

0 comments on commit c09fca5

Please sign in to comment.