UNPKG

carbon-react

Version:

A library of reusable React components for easily building user interfaces.

10 lines (9 loc) 498 B
import React from "react"; import { InputContextProps } from "./useInputBehaviour"; import { InputBehaviourProps } from "./input-behaviour.component"; declare const InputGroupContext: React.Context<InputContextProps>; export interface InputGroupBehaviourProps extends InputBehaviourProps { blockGroupBehaviour?: boolean; } declare const InputGroupBehaviour: ({ children, blockGroupBehaviour, }: InputGroupBehaviourProps) => React.JSX.Element; export { InputGroupContext, InputGroupBehaviour };