import { SVGAttributes } from 'react'; import { SuggestionModalProps } from 'components/Modals'; export interface IconButtonProps extends SVGAttributes { /** * Активна ли кнопка иконки (состояние active) */ active?: boolean; /** * Внешний вид кнопки */ appearance: 'fill-primary' | 'fill-gray' | 'fill-dark-gray' | 'background-gray'; /** * Иконка для кнопки */ icon: React.FunctionComponent>; /** * Параметры модального окна с подсказкой */ suggestion?: Omit & Partial>; } //# sourceMappingURL=IconButton.props.d.ts.map