import type { FC } from 'react'
import { RiLoader2Line, RiStopCircleFill } from '@remixicon/react'
import Tooltip from '@/app/components/base/tooltip'
import cn from '@/utils/classnames'
const VariableInspectTrigger: FC = () => {
return (
{/* view button */}
{}}
>
Variable inspect
{/* caching button */}
{}}
>
Caching running status
{/* stop button */}
{}}
>
{/* finish button */}
{}}
>
View cached variables
{/* clear button */}
{}}
>
Clear
)
}
export default VariableInspectTrigger