'use client' import React from 'react' import classNames from '../../../utils/classNames' type Icon = (props: React.SVGProps & { title?: string | undefined; titleId?: string | undefined; }) => JSX.Element const ToolToggleButton = (props: { icon: Icon, hint: string, isActive: boolean, onClick?: React.MouseEventHandler }) => { return
{props.hint}
} export default ToolToggleButton