UNPKG

@denali-design/react

Version:

React.JS component library for the Denali CSS Framework

28 lines 840 B
/** * Copyright 2020, Verizon Media * Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms. */ import React from 'react'; export declare const DnInputGroup: { ({ children, className, isStacked, isResponsive, hasButton, labelText, isAuto, labelId, ...rest }: DnInputGroupProps): JSX.Element; defaultProps: { className: string; isStacked: boolean; isResponsive: boolean; hasButton: boolean; isAuto: boolean; labelText: string; labelId: undefined; }; }; export interface DnInputGroupProps { className?: string; children?: React.ReactNode; isStacked?: boolean; isResponsive?: boolean; hasButton?: boolean; isAuto?: boolean; labelText?: string; labelId?: string; } //# sourceMappingURL=DnInputGroup.d.ts.map