summaryrefslogtreecommitdiff
path: root/spec/frontend/registry/shared/stubs.js
blob: f6b88d70e499dea26af57e3c50f971b83f4b346f (plain)
1
2
3
4
5
6
7
8
9
10
11
export const GlLoadingIcon = { name: 'gl-loading-icon-stub', template: '<svg></svg>' };
export const GlCard = {
  name: 'gl-card-stub',
  template: `
<div>
  <slot name="header"></slot>
  <slot></slot>
  <slot name="footer"></slot>
</div>
`,
};