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