Skip to content

Commit

Permalink
refactor: #10 - Input type 네임 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
dudwns committed Oct 30, 2023
1 parent 63891a9 commit c933c07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/Input/Input.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { cls } from '@/utils'

interface Input {
export interface InputProps {
label?: string
type?: string
placeholder?: string
Expand All @@ -25,7 +25,7 @@ const Input = ({
multiLine,
onbuttonClick,
...rest
}: Input) => {
}: InputProps) => {
return (
<div className="flex flex-col justify-center">
{label && (
Expand Down

0 comments on commit c933c07

Please sign in to comment.