Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
1.33 kB
// @flow
import * as React from "react";
import cn from "classnames";
import Form from "./Form.react";
import FormInputGroupAppend from "./FormInputGroupAppend.react";
import FormInputGroupPrepend from "./FormInputGroupPrepend.react";
import type { Props as InputProps } from "./FormInput.react";
type Props = {|
+children?: React.Node,
+className?: string,
+append?: React.Node,
+prepend?: React.Node,
+RootComponent?: React.ElementType,
+inputProps?: InputProps,
|};
function FormInputGroup(props: Props): React.Node {
const { className, append, prepend, RootComponent, inputProps } = props;
const classes = cn(
{
"input-group": true,
},
className
);
const Component = RootComponent || "div";
const children = inputProps ? <Form.Input {...inputProps} /> : props.children;
if (prepend === true) {
return <FormInputGroupPrepend>{children}</FormInputGroupPrepend>;
}
if (append === true) {
return <FormInputGroupAppend>{children}</FormInputGroupAppend>;
}
return (
<Component className={classes}>
{prepend && <FormInputGroupPrepend>{prepend}</FormInputGroupPrepend>}
{children}
{append && <FormInputGroupAppend>{append}</FormInputGroupAppend>}
</Component>
);
}
FormInputGroup.displayName = "Form.InputGroup";
export default FormInputGroup;