diff --git a/rsconcept/frontend/src/components/control/submit-button.tsx b/rsconcept/frontend/src/components/control/submit-button.tsx index de75f2a8..0197c395 100644 --- a/rsconcept/frontend/src/components/control/submit-button.tsx +++ b/rsconcept/frontend/src/components/control/submit-button.tsx @@ -1,3 +1,5 @@ +import { globalIDs } from '@/utils/constants'; + import { type Button } from '../props'; import { cn } from '../utils'; @@ -15,7 +17,17 @@ interface SubmitButtonProps extends Button { /** * Displays submit type button with icon and text. */ -export function SubmitButton({ text = 'ОК', icon, disabled, loading, className, ...restProps }: SubmitButtonProps) { +export function SubmitButton({ + text = 'ОК', + icon, + title, + titleHtml, + hideTitle, + disabled, + loading, + className, + ...restProps +}: SubmitButtonProps) { return (