temp: tip

This commit is contained in:
Joel 2025-07-02 18:33:27 +08:00
parent 859b4cd6cc
commit a294773dd5
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
'use client'
import { RiBookOpenLine } from '@remixicon/react'
import type { FC } from 'react'
import React from 'react'
const Tip: FC = () => {
return (
<div className='w-[316px] rounded-xl bg-background-section p-6'>
<div className='rounded-[10px] border-[0.5px] border-components-card-border p-2 shadow-lg'>
<RiBookOpenLine className='size-5 text-text-accent' />
</div>
</div>
)
}
export default React.memo(Tip)