react-numeral
Version:
React implementation of numeral.js
27 lines (20 loc) • 619 B
JavaScript
import React, { Component } from 'react';
import numeral from 'numeral';
const propTypes = {};
class Numeral extends Component {
constructor(props) {
super(props);
}
render() {
const className = this.props.className;
const value = this.props.value;
const format = this.props.format;
const formated = format ? numeral(value).format(format) : numeral(value);
if (value) return /*#__PURE__*/React.createElement("span", {
className: `${className ? className : ''}`
}, formated);else return null;
}
}
Numeral.propTypes = propTypes;
export default Numeral;
export { Numeral };