UNPKG

@blockstack/ui

Version:

Blockstack UI components built using React and styled-components with styled-system.

10 lines (9 loc) 282 B
import { BoxProps } from '../box'; import * as React from 'react'; import { InputSize } from '../input'; interface InputGroupPropsBase { size?: InputSize; children: React.ReactNode; } export declare type InputGroupProps = InputGroupPropsBase & BoxProps; export {};