import { use } from '../utils'; const [sfc, bem] = use('loading'); const DEFAULT_COLOR = '#c9c9c9'; export default sfc({ props: { size: String, type: { type: String, default: 'circular' }, color: { type: String, default: DEFAULT_COLOR } }, render(h) { const { color, size, type } = this; const colorType = color === 'white' || color === 'black' ? color : ''; const style = { color: color === 'black' ? DEFAULT_COLOR : color, width: size, height: size }; const Spin = []; if (type === 'spinner') { for (let i = 0; i < 12; i++) { Spin.push(); } } const Circular = type === 'circular' && ( ); return (