@primer/react
Version:
An implementation of GitHub's Primer Design System using React
15 lines • 446 B
TypeScript
import React from 'react';
import type { SxProp } from '../../sx';
type Props = {
/**
* The unique identifier used to associate the caption with an input
*/
id: string;
/**
* Whether the input associated with this caption is disabled
*/
disabled?: boolean;
} & SxProp;
declare const InputCaption: React.FC<React.PropsWithChildren<Props>>;
export default InputCaption;
//# sourceMappingURL=InputCaption.d.ts.map