UNPKG

@blockstack/ui

Version:

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

14 lines (13 loc) 490 B
import { InputSize } from '../input'; import * as React from 'react'; import { BoxProps } from '../box'; import { Omit } from '../common-types'; interface InputElementPropsBase { size?: InputSize; placement?: 'left' | 'right'; children: React.ReactNode; disablePointerEvents?: boolean; } export declare type InputElementProps = InputElementPropsBase & BoxProps; export declare type PositionedInputElementProps = Omit<InputElementProps, 'placement'>; export {};