wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import React from 'react'
import s from './style.module.css'
import ActionButton from '../action-button'
import cn from '@/utils/classnames'
 
type ISVGBtnProps = {
  isSVG: boolean
  setIsSVG: React.Dispatch<React.SetStateAction<boolean>>
}
 
const SVGBtn = ({
  isSVG,
  setIsSVG,
}: ISVGBtnProps) => {
  return (
    <ActionButton onClick={() => { setIsSVG(prevIsSVG => !prevIsSVG) }}>
      <div className={cn('h-4 w-4', isSVG ? s.svgIconed : s.svgIcon)}></div>
    </ActionButton>
  )
}
 
export default SVGBtn