@primer/react
Version:
An implementation of GitHub's Primer Design System using React
12 lines • 598 B
TypeScript
import 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';
}>>;
export default TextInputInnerVisualSlot;
//# sourceMappingURL=TextInputInnerVisualSlot.d.ts.map