@primer/react
Version:
An implementation of GitHub's Primer Design System using React
19 lines (18 loc) • 465 B
TypeScript
import React from "react";
//#region src/FormControl/FormControlCaption.d.ts
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;
}
//#endregion
export { FormControlCaption, FormControlCaptionProps };