@blockstack/ui
Version:
Blockstack UI components built using React and styled-components with styled-system.
14 lines (13 loc) • 514 B
TypeScript
/// <reference types="react" />
import { InputAddonProps } from './types';
export * from './types';
declare const InputAddon: {
({ placement, ...props }: InputAddonProps): JSX.Element;
propTypes: {
placement: import("prop-types").Requireable<string>;
};
displayName: string;
};
declare const InputLeftAddon: (props: InputAddonProps) => JSX.Element;
declare const InputRightAddon: (props: InputAddonProps) => JSX.Element;
export { InputAddon, InputLeftAddon, InputRightAddon };