UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

12 lines (11 loc) 460 B
import type { PropsFor } from "../../types.js"; export type FieldGroupItemProps = PropsFor<"div", { /** Reduce the height to match other `small` inputs */ small?: boolean; }>; /** * Static child item in a FieldGroup (usually text or an icon) * @visibleName FieldGroup.Item */ declare const FieldGroupItem: import("react").ForwardRefExoticComponent<FieldGroupItemProps & import("react").RefAttributes<HTMLDivElement>>; export default FieldGroupItem;