You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcgj-dify-1.7.0/web/app/(commonLayout)/apps/check-legacy/components/tip.tsx

16 lines
448 B
TypeScript

'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)