@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
27 lines (26 loc) • 640 B
JavaScript
import { defineComponent as e } from "vue";
const o = e({
name: "NeonExpansionIndicator",
props: {
/**
* Whether the chevron is <em>open</em>.
*/
expanded: { type: Boolean, default: !1 },
/**
* Display the expansion indicator in the inverse text color
*/
inverse: { type: Boolean, default: !1 },
/**
* Display the expansion indicator in the disabled color
*/
disabled: { type: Boolean, default: !1 },
/**
* The color of the chevron.
*/
color: { type: String, default: null }
}
});
export {
o as default
};
//# sourceMappingURL=NeonExpansionIndicator.es.js.map