UNPKG

quasar

Version:

Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time

64 lines (56 loc) 1.22 kB
import { h } from 'vue' import useSpinner, { useSpinnerProps } from './use-spinner.js' import { createComponent } from '../../utils/private/create.js' const svg = [ h('rect', { x: '25', y: '25', width: '50', height: '50', fill: 'none', 'stroke-width': '4', stroke: 'currentColor' }, [ h('animateTransform', { id: 'spinnerBox', attributeName: 'transform', type: 'rotate', from: '0 50 50', to: '180 50 50', dur: '0.5s', begin: 'rectBox.end' }) ]), h('rect', { x: '27', y: '27', width: '46', height: '50', fill: 'currentColor' }, [ h('animate', { id: 'rectBox', attributeName: 'height', begin: '0s;spinnerBox.end', dur: '1.3s', from: '50', to: '0', fill: 'freeze' }) ]) ] export default createComponent({ name: 'QSpinnerBox', props: useSpinnerProps, setup (props) { const { cSize, classes } = useSpinner(props) return () => h('svg', { class: classes.value, width: cSize.value, height: cSize.value, viewBox: '0 0 100 100', preserveAspectRatio: 'xMidYMid', xmlns: 'http://www.w3.org/2000/svg' }, svg) } })