import { useTranslation } from 'react-i18next'; import { ActionIcon, ActionIconProps } from '/@/shared/components/action-icon/action-icon'; interface FolderButtonProps extends ActionIconProps { isActive?: boolean; } export const FolderButton = ({ isActive, ...props }: FolderButtonProps) => { const { t } = useTranslation(); return ( ); };