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