split.tsx 309 B

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