UNPKG

carbon-react

Version:

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

11 lines (10 loc) 419 B
import React from "react"; import { StyledFieldHelpProps } from "./field-help.style"; export interface FieldHelpProps extends StyledFieldHelpProps { /** Child elements */ children?: React.ReactNode; /** The unique id of the FieldHelp component */ id?: string; } export declare const FieldHelp: ({ children, labelInline, labelWidth, id, }: FieldHelpProps) => React.JSX.Element; export default FieldHelp;