dify/web/app/components/base/svg/index.tsx
2026-05-20 03:39:44 +00:00

23 lines
525 B
TypeScript

import { cn } from '@langgenius/dify-ui/cn'
import * as React from 'react'
import ActionButton from '../action-button'
import s from './style.module.css'
type ISVGBtnProps = {
isSVG: boolean
setIsSVG: React.Dispatch<React.SetStateAction<boolean>>
}
const SVGBtn = ({
isSVG,
setIsSVG,
}: ISVGBtnProps) => {
return (
<ActionButton onClick={() => { setIsSVG(prevIsSVG => !prevIsSVG) }}>
<div className={cn('size-4', isSVG ? s.svgIconed : s.svgIcon)}></div>
</ActionButton>
)
}
export default SVGBtn