Daniel J. Summers 2d5e391b60 Log On works
- 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
2022-08-30 23:15:35 -04:00

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>