-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: duplicate class name in suffix icon (#97)
* fix: duplicate class name in suffix icon * refactor: setting default value in TextField * refactor: modify suffix type in SuffixTextField * fix: add suffix icon visibility * fix: add input active property * Update src/components/TextField/TextField.style.ts Co-authored-by: 이유진 <[email protected]> --------- Co-authored-by: 이유진 <[email protected]>
- Loading branch information
Showing
6 changed files
with
31 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 1 addition & 4 deletions
5
src/components/TextField/SuffixTextField/SuffixTextField.type.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
import { TextFieldProps } from '../TextField.type'; | ||
|
||
export interface SuffixTextFieldProps extends Omit<TextFieldProps, 'searchPrefix'> { | ||
/** TextField 오른쪽에 들어갈 텍스트 */ | ||
suffix?: string; | ||
} | ||
export interface SuffixTextFieldProps extends Omit<TextFieldProps, 'searchPrefix'> {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters