generated from ranajahanzaib/opensource
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nadia Iqbal
committed
Apr 24, 2022
1 parent
77cecbf
commit 401a75a
Showing
5 changed files
with
68 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
export default function FormCheckInput(props: any) { | ||
return ( | ||
<div> | ||
<div className="input-group mb-3"> | ||
<div className="input-group-text"> | ||
<input | ||
className="form-check-input mt-0" | ||
type={props.typeInput} | ||
value={props.value} | ||
aria-label={props.ariaLabel} | ||
/> | ||
</div> | ||
<input | ||
type="text" | ||
className="form-control" | ||
aria-label={props.ariaLabel1} | ||
/> | ||
</div> | ||
</div> | ||
); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from "react"; | ||
export default function InputGroupsSizing(props) { | ||
return ( | ||
<div> | ||
<div className={props.inputClass}> | ||
<span className="input-group-text" id={props.id}> | ||
{props.label} | ||
</span> | ||
<input | ||
type="text" | ||
className="form-control" | ||
aria-label="Sizing example input" | ||
aria-describedby={props.size} | ||
/> | ||
</div> | ||
</div> | ||
); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from "react"; | ||
export default function InputGroups(props) { | ||
return ( | ||
<div> | ||
<div className="input-group mb-3"> | ||
<span className="input-group-text">{props.span}</span> | ||
<input | ||
type="text" | ||
className="form-control" | ||
aria-label="Amount (to the nearest dollar)" | ||
/> | ||
<span className="input-group-text">{props.span1}</span> | ||
</div> | ||
</div> | ||
); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import React from "react"; | ||
export default function FormCheckInput(props) { | ||
return ( | ||
<div> | ||
|
||
</div> | ||
); | ||
} |
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,2 +1,6 @@ | ||
import * as React from "react"; | ||
|
||
import FormCheckInput from "./components/Multipleaddons"; | ||
import I | ||
|
||
|
||
export { Button, type ButtonProps } from "./Button"; |