@primer/react
Version:
An implementation of GitHub's Primer Design System using React
12 lines • 437 B
TypeScript
import type React from 'react';
export type FormControlCaptionProps = React.PropsWithChildren<{
id?: string;
className?: string;
style?: React.CSSProperties;
}>;
declare function FormControlCaption({ id, children, className, style }: FormControlCaptionProps): React.JSX.Element;
declare namespace FormControlCaption {
var __SLOT__: symbol;
}
export { FormControlCaption };
//# sourceMappingURL=FormControlCaption.d.ts.map