decentraland-ui
Version:
Decentraland's UI components and styles
21 lines (20 loc) • 495 B
TypeScript
import * as React from 'react';
import './Address.css';
export declare type AddressProps = {
value: string;
strong?: boolean;
shorten?: boolean;
tooltip?: boolean;
className?: string;
};
/**
* @deprecated Should start using the same component migrated to UI2.
*/
export declare class Address extends React.Component<AddressProps> {
static defaultProps: {
className: string;
strong: boolean;
shorten: boolean;
};
render(): JSX.Element;
}