feat: new icons (#5412)
This commit is contained in:
@@ -3,7 +3,10 @@ import { useBoolean } from 'ahooks'
|
||||
import type { FC } from 'react'
|
||||
import React, { useState } from 'react'
|
||||
import { useTranslation } from 'react-i18next'
|
||||
import { ChevronDown, ChevronRight } from '@/app/components/base/icons/src/vender/line/arrows'
|
||||
import {
|
||||
RiArrowDownSLine,
|
||||
RiArrowRightSLine,
|
||||
} from '@remixicon/react'
|
||||
import ImagePreview from '@/app/components/base/image-uploader/image-preview'
|
||||
|
||||
type Props = {
|
||||
@@ -27,8 +30,8 @@ const VarPanel: FC<Props> = ({
|
||||
>
|
||||
{
|
||||
isCollapse
|
||||
? <ChevronRight className='w-3 h-3 text-gray-300' />
|
||||
: <ChevronDown className='w-3 h-3 text-gray-300' />
|
||||
? <RiArrowRightSLine className='w-3 h-3 text-gray-300' />
|
||||
: <RiArrowDownSLine className='w-3 h-3 text-gray-300' />
|
||||
}
|
||||
<div className='text-sm font-semibold text-indigo-800 uppercase'>{t('appLog.detail.variables')}</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user