Files
pezkuwi-ui/packages/vue-identicon/src/icons/Empty.ts
T
2020-01-06 14:51:16 +01:00

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']
});