react-bootstrap
Version:
Bootstrap 5 components built with React
9 lines (8 loc) • 391 B
TypeScript
import { BsPrefixRefForwardingComponent } from './helpers';
import { UsePlaceholderProps } from './usePlaceholder';
import { ButtonVariant } from './types';
export interface PlaceholderButtonProps extends UsePlaceholderProps {
variant?: ButtonVariant;
}
declare const PlaceholderButton: BsPrefixRefForwardingComponent<'button', PlaceholderButtonProps>;
export default PlaceholderButton;