@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
24 lines (23 loc) • 629 B
JavaScript
import { defineComponent as o } from "vue";
import { NeonFunctionalColor as e } from "../../../common/enums/NeonFunctionalColor.es.js";
const r = o({
name: "NeonNotificationCounter",
props: {
/**
* Whether the notification is active
*/
active: { type: Boolean, default: !1 },
/**
* The notification color
*/
color: { type: String, default: e.Error },
/**
* The count of notifications to display, if greater than 9 <em>9+</em> is displayed
*/
count: { type: Number, default: null }
}
});
export {
r as default
};
//# sourceMappingURL=NeonNotificationCounter.es.js.map