zombiebox-extension-storybook
Version:
ZombieBox extension for interactive UI development
22 lines (19 loc) • 446 B
JavaScript
/*
* This file is part of the ZombieBox package.
*
* Copyright © 2018-2020, Interfaced
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import InlineWidget from 'cutejs/widgets/inline-widget';
import {div} from 'zb/html';
/**
*/
export default class Spinner extends InlineWidget {
/**
*/
constructor() {
super(div('w-ext-storybook-spinner'));
}
}