@nexusui/components
Version:
These are custom components specially-developed for NexusUI applications. They will make your life easier by giving you out-of-the-box implementations for various high-level UI elements that you can drop directly into your application.
2 lines (1 loc) • 327 B
JavaScript
const e={base:"m/s","m/s":{toBase:e=>e,fromBase:e=>e,fullName:"Meter per second"},"km/h":{toBase:e=>e/3.6,fromBase:e=>3.6*e,fullName:"Kilometer per hour"},"mi/h":{toBase:e=>e/2.23693629,fromBase:e=>2.23693629*e,fullName:"Mile per hour"},kn:{toBase:e=>e/1.94384449,fromBase:e=>1.94384449*e,fullName:"Knot"}};export{e as speed};