-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat : Implemented the Add New User Modal
- Loading branch information
1 parent
7cdb2b5
commit 107cd4d
Showing
1 changed file
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,7 +62,7 @@ export function InputForm() { | |
</FormLabel> | ||
<FormControl> | ||
<Input | ||
placeholder="shadcn" | ||
placeholder="e.g Joh Doe" | ||
{...field} | ||
className={clsx( | ||
`${styles.placeholderCustom} placeholderCustom`, | ||
|
@@ -92,7 +92,7 @@ export function InputForm() { | |
</FormLabel> | ||
<FormControl> | ||
<Input | ||
placeholder="shadcn" | ||
placeholder="e.g [email protected]" | ||
{...field} | ||
className={clsx( | ||
`${styles.placeholderCustom} placeholderCustom`, | ||
|
@@ -122,7 +122,7 @@ export function InputForm() { | |
</FormLabel> | ||
<FormControl> | ||
<Input | ||
placeholder="shadcn" | ||
placeholder="e.g 08123456789" | ||
{...field} | ||
className={clsx( | ||
`${styles.placeholderCustom} placeholderCustom`, | ||
|