- E-mail address must be unique - Remove references to Mastodon and instances - Move profile edit from /citizen to /profile - Change indexes to BTREE - Eliminate pug
17 lines
271 B
Vue
17 lines
271 B
Vue
<template>
|
|
<svg viewbox="0 0 24 24"><path :fill="color || 'white'" :d="icon" /></svg>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
color?: string
|
|
icon: string
|
|
}>()
|
|
</script>
|
|
|
|
<style lang="sass" scoped>
|
|
svg
|
|
width: 24px
|
|
height: 24px
|
|
</style>
|