diff --git a/packages/core/components/InputOrGroup/index.tsx b/packages/core/components/InputOrGroup/index.tsx index e05b6c07a3..05607211e7 100644 --- a/packages/core/components/InputOrGroup/index.tsx +++ b/packages/core/components/InputOrGroup/index.tsx @@ -4,7 +4,14 @@ import { ExternalInput } from "../ExternalInput"; import styles from "./styles.module.css"; import { replace } from "../../lib"; -import { Trash } from "react-feather"; +import { + Trash, + Type, + List, + ChevronDown, + CheckCircle, + Hash, +} from "react-feather"; const getClassName = getClassNameFactory("Input", styles); @@ -30,7 +37,12 @@ export const InputOrGroup = ({ return (
- {label || name} + +
+ +
+ {label || name} +
{Array.isArray(value) ? ( value.map((item, i) => ( @@ -114,7 +126,12 @@ export const InputOrGroup = ({ return (