UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

18 lines (17 loc) 417 B
import * as React from 'react'; import './Address.css'; export declare type AddressProps = { value: string; strong?: boolean; shorten?: boolean; tooltip?: boolean; className?: string; }; export declare class Address extends React.Component<AddressProps> { static defaultProps: { className: string; strong: boolean; shorten: boolean; }; render(): JSX.Element; }