You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc-ui/src/components/CscListItemTitle.vue

36 lines
570 B

<template>
<div
class="csc-list-item-title"
>
<q-icon
v-if="icon"
:name="icon"
:color="iconColor"
size="24px"
/>
<slot />
</div>
</template>
<script>
export default {
name: 'CscListItemTitle',
props: {
icon: {
type: String,
default: ''
},
iconColor: {
type: String,
default: ''
}
},
data () {
return {}
}
}
</script>
<style lang="sass" rel="stylesheet/sass">
</style>