@primer/react
Version:
An implementation of GitHub's Primer Design System using React
15 lines (14 loc) • 395 B
TypeScript
import React from 'react';
import { 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;