Skip to content

Commit d6dc8a7

Browse files
committedNov 3, 2021
remove explicit class prop from RowHeader
1 parent 72db119 commit d6dc8a7

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed
 

‎packages/frontend-shared/src/components/ListRowHeader.vue

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<template>
2-
<div
3-
class="flex items-center w-full text-left rounded py-12px"
4-
:class="props.class"
5-
>
2+
<div class="flex items-center w-full text-left rounded py-12px">
63
<div class="flex items-center h-40px px-24px">
74
<slot name="icon">
85
<component
@@ -38,13 +35,11 @@
3835
import { FunctionalComponent, SVGAttributes, useSlots } from 'vue'
3936
4037
const props = withDefaults(defineProps<{
41-
class?: string | string[] | Record<string, any>
4238
description?: string
4339
icon?: FunctionalComponent<SVGAttributes>
4440
gray?: boolean
4541
bigHeader?: boolean
4642
}>(), {
47-
class: undefined,
4843
description: undefined,
4944
icon: undefined,
5045
gray: false,

0 commit comments

Comments
 (0)