@primer/react
Version:
An implementation of GitHub's Primer Design System using React
15 lines (14 loc) • 523 B
JavaScript
//#region src/FilteredActionList/constants.ts
var FilteredActionListLoadingType = class {
constructor(name, appearsInBody) {
this.name = name;
this.appearsInBody = appearsInBody;
}
};
const FilteredActionListLoadingTypes = {
bodySpinner: new FilteredActionListLoadingType("body-spinner", true),
bodySkeleton: new FilteredActionListLoadingType("body-skeleton", true),
input: new FilteredActionListLoadingType("input", false)
};
//#endregion
export { FilteredActionListLoadingType, FilteredActionListLoadingTypes };