@blockstack/ui
Version:
Blockstack UI components built using React and styled-components with styled-system.
11 lines (10 loc) • 317 B
TypeScript
import * as React from 'react';
import { InputSize } from '../input';
import { BoxProps } from '../box';
interface InputAddonPropsBase {
children: React.ReactNode;
size?: InputSize;
placement?: 'left' | 'right';
}
export declare type InputAddonProps = InputAddonPropsBase & BoxProps;
export {};