@primer/react
Version:
An implementation of GitHub's Primer Design System using React
14 lines • 693 B
TypeScript
import type React from 'react';
import type { TextInputNonPassthroughProps } from '../../TextInput';
declare const TextInputInnerVisualSlot: React.FC<React.PropsWithChildren<{
/** Whether the input is expected to ever show a loading indicator */
hasLoadingIndicator: boolean;
/** Whether the to show the loading indicator */
showLoadingIndicator: TextInputNonPassthroughProps['loading'];
/** Which side of this visual is being rendered */
visualPosition: 'leading' | 'trailing';
/** Used to provide a reference for usage with `aria-describedby` */
id?: string;
}>>;
export default TextInputInnerVisualSlot;
//# sourceMappingURL=TextInputInnerVisualSlot.d.ts.map