mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-05-31 01:41:05 +00:00
19 lines
482 B
TypeScript
19 lines
482 B
TypeScript
// Copyright 2017-2020 @polkadot/vue-identicon authors & contributors
|
|
// This software may be modified and distributed under the terms
|
|
// of the Apache-2.0 license. See the LICENSE file for details.
|
|
|
|
import Vue from 'vue';
|
|
|
|
/**
|
|
* @name Empty
|
|
* @description An empty identicon
|
|
*/
|
|
export const Empty = Vue.extend({
|
|
template: `
|
|
<svg :height="size" :width="size" viewBox="0 0 64 64">
|
|
<circle cx="50%" cy="50%" fill="#eee" r="50%" />
|
|
</svg>
|
|
`,
|
|
props: ['size']
|
|
});
|