mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-10 01:16:39 +02:00
16 lines
308 B
JavaScript
16 lines
308 B
JavaScript
import PropTypes from 'prop-types';
|
|
function Secret({ value }) {
|
|
|
|
return (
|
|
<div>
|
|
<span style={{ width: '250px', display: 'inline-block' }}>************************************</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
Secret.propTypes = {
|
|
value: PropTypes.string,
|
|
};
|
|
|
|
export default Secret;
|