Skip to content

Commit

Permalink
. (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadia Iqbal committed Apr 24, 2022
1 parent 77cecbf commit 401a75a
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 1 deletion.
21 changes: 21 additions & 0 deletions packages/kbs-core/src/components/CheckInput.tsx
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>
);
}
18 changes: 18 additions & 0 deletions packages/kbs-core/src/components/InputSizing.tsx
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>
);
}
16 changes: 16 additions & 0 deletions packages/kbs-core/src/components/Inputgroups.tsx
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>
);
}
8 changes: 8 additions & 0 deletions packages/kbs-core/src/components/Multipleaddons.tsx
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>
);
}
6 changes: 5 additions & 1 deletion packages/kbs-core/src/index.tsx
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";

0 comments on commit 401a75a

Please # to comment.