Skip to content

Commit

Permalink
remove explicit class prop from RowHeader
Browse files Browse the repository at this point in the history
  • Loading branch information
elevatebart committed Nov 3, 2021
1 parent 72db119 commit d6dc8a7
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/frontend-shared/src/components/ListRowHeader.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<template>
<div
class="flex items-center w-full text-left rounded py-12px"
:class="props.class"
>
<div class="flex items-center w-full text-left rounded py-12px">
<div class="flex items-center h-40px px-24px">
<slot name="icon">
<component
Expand Down Expand Up @@ -38,13 +35,11 @@
import { FunctionalComponent, SVGAttributes, useSlots } from 'vue'
const props = withDefaults(defineProps<{
class?: string | string[] | Record<string, any>
description?: string
icon?: FunctionalComponent<SVGAttributes>
gray?: boolean
bigHeader?: boolean
}>(), {
class: undefined,
description: undefined,
icon: undefined,
gray: false,
Expand Down

0 comments on commit d6dc8a7

Please sign in to comment.