react-code-dataset / tabler-react /src /components /Form /FormInputGroupPrepend.react.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
433 Bytes
// @flow
import * as React from "react";
import cn from "classnames";
type Props = {|
+children?: React.Node,
+className?: string,
|};
function FormInputGroupPrepend({ className, children }: Props): React.Node {
const classes = cn("input-group-prepend", className);
return <span className={classes}>{children}</span>;
}
FormInputGroupPrepend.displayName = "Form.InputGroupPrepend";
export default FormInputGroupPrepend;