mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
- [X] Title and Author Position reversed - [X] Design & Format of Post-Date + Position - [X] No Category Names - [X] Actions/Reactions & Tags reversed
17 lines
234 B
Vue
17 lines
234 B
Vue
<template>
|
|
<ds-tag>
|
|
<ds-icon size="large" :name="icon"/>
|
|
{{ name }}
|
|
</ds-tag>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'hc-category',
|
|
props: {
|
|
icon: { type: String },
|
|
name: { type: String }
|
|
}
|
|
}
|
|
</script>
|