wwf
2025-11-18 77950e48c76f4a3b29d01831d43039caba29888a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'use client'
import type { FC } from 'react'
import React from 'react'
import cn from '@/utils/classnames'
 
type Props = {
  className?: string
}
 
const Split: FC<Props> = ({
  className,
}) => {
  return (
    <div className={cn(className, 'h-[0.5px] bg-divider-subtle')}>
    </div>
  )
}
export default React.memo(Split)