|
|
|
|
@ -3,7 +3,7 @@ import type { FC, ReactNode } from 'react'
|
|
|
|
|
import React from 'react'
|
|
|
|
|
import cn from '@/utils/classnames'
|
|
|
|
|
|
|
|
|
|
export interface IFeaturePanelProps {
|
|
|
|
|
export type IFeaturePanelProps = {
|
|
|
|
|
className?: string
|
|
|
|
|
headerIcon?: ReactNode
|
|
|
|
|
title: ReactNode
|
|
|
|
|
@ -23,7 +23,7 @@ const FeaturePanel: FC<IFeaturePanelProps> = ({
|
|
|
|
|
children,
|
|
|
|
|
}) => {
|
|
|
|
|
return (
|
|
|
|
|
<div className={cn('rounded-xl border-t-[0.5px] border-l-[0.5px] bg-background-section-burn pb-3', noBodySpacing && '!pb-0', className)}>
|
|
|
|
|
<div className={cn('rounded-xl border-t-[0.5px] border-l-[0.5px] bg-background-section-burn pb-3', noBodySpacing && 'pb-0', className)}>
|
|
|
|
|
{/* Header */}
|
|
|
|
|
<div className={cn('px-3 pt-2', hasHeaderBottomBorder && 'border-b border-divider-subtle')}>
|
|
|
|
|
<div className='flex justify-between items-center h-8'>
|
|
|
|
|
|