@coreui/react
Version:
UI Components Library for React.js
13 lines (12 loc) • 437 B
TypeScript
import React, { HTMLAttributes } from 'react';
export interface CInputGroupProps extends HTMLAttributes<HTMLDivElement> {
/**
* A string of all className you want applied to the component.
*/
className?: string;
/**
* Size the component small or large.
*/
size?: 'sm' | 'lg';
}
export declare const CInputGroup: React.ForwardRefExoticComponent<CInputGroupProps & React.RefAttributes<HTMLDivElement>>;