UNPKG

@primer/react

Version:

An implementation of GitHub's Primer Design System using React

12 lines 522 B
import type React from 'react'; import type { FormValidationStatus } from '../utils/types/FormValidationStatus'; import type { FCWithSlotMarker } from '../utils/types'; export type FormControlValidationProps = { variant: FormValidationStatus; id?: string; className?: string; style?: React.CSSProperties; }; declare const FormControlValidation: FCWithSlotMarker<React.PropsWithChildren<FormControlValidationProps>>; export default FormControlValidation; //# sourceMappingURL=_FormControlValidation.d.ts.map