We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72db119 commit d6dc8a7Copy full SHA for d6dc8a7
packages/frontend-shared/src/components/ListRowHeader.vue
@@ -1,8 +1,5 @@
1
<template>
2
- <div
3
- class="flex items-center w-full text-left rounded py-12px"
4
- :class="props.class"
5
- >
+ <div class="flex items-center w-full text-left rounded py-12px">
6
<div class="flex items-center h-40px px-24px">
7
<slot name="icon">
8
<component
@@ -38,13 +35,11 @@
38
35
import { FunctionalComponent, SVGAttributes, useSlots } from 'vue'
39
36
40
37
const props = withDefaults(defineProps<{
41
- class?: string | string[] | Record<string, any>
42
description?: string
43
icon?: FunctionalComponent<SVGAttributes>
44
gray?: boolean
45
bigHeader?: boolean
46
}>(), {
47
- class: undefined,
48
description: undefined,
49
icon: undefined,
50
gray: false,
0 commit comments