UNPKG

@foreverrbum/ethsign

Version:

This package will allow you to electronically sign documents within your application

10 lines 293 B
import React from 'react'; const StatusLabel = (props) =>{ const { label, color } = props; return( <div className={` ${color} w-24 justify-center text-button mx-auto text-white px-3 py-2 rounded-lg flex`}> {label} </div> ); } export default StatusLabel;