mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
20 lines
279 B
Vue
20 lines
279 B
Vue
<template>
|
|
<ds-tag>
|
|
<ds-icon
|
|
size="large"
|
|
:name="icon"
|
|
/>
|
|
{{ name }}
|
|
</ds-tag>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'HcCategory',
|
|
props: {
|
|
icon: { type: String, required: true },
|
|
name: { type: String, default: '' }
|
|
}
|
|
}
|
|
</script>
|