UNPKG

carbon-react

Version:

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

10 lines (9 loc) 387 B
import React from "react"; export interface NewValidationContextProps { /** Feature flag for opting in to the latest validation designs for components that support it. * * NOTE - Will eventually be set to `true` by default in the future. */ validationRedesignOptIn?: boolean; } declare const _default: React.Context<NewValidationContextProps>; export default _default;