react-component-truncated
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

React Component - <Truncated />

npm npm bundle size GitHub issues

node-current GitHub package.json dependency version (dev dep on branch)

A stylistic component to crop long texts, but still show the beginning and the end. Pretty useful to display crypto tokens or crypto addresses and hashes.

Install with npm or yarn:

# via npm
npm install react-component-truncated

# via yarn
yarn add react-component-truncated

Usage

Use just as a normal HTML element, with the to be truncated contents between the tags. Accepts all props and attributes of a normal HTMLDivElement.

Example

import Truncated from 'react-component-truncated';

// use in Component
function App(props) {
	return (
		<>
			This ETH wallet address needs to be truncated:{' '}
			<Truncated style={{ width: 210 }}>
				0x86F03eBCE80128d1C815b7729AeE4ADE12a77e8A
			</Truncated>
		</>
	);
}

License

MIT Copyright (c) 2021 Nikita 'donnikitos' Nitichevski.

Package Sidebar

Install

npm i react-component-truncated

Weekly Downloads

2

Version

1.0.1

License

MIT

Unpacked Size

11.9 kB

Total Files

5

Last publish

Collaborators

  • donnikitos