Client: added SelectIconProps

This commit is contained in:
Dmitry Sychugov 2024-07-26 20:21:26 +05:00
parent 2f75c3fece
commit e8cba0dcfd

View File

@ -34,5 +34,12 @@ export interface CustomLogoProps {
export interface SelectColorProps {
t: TTranslation;
logoColors: string[];
selectedColor: string;
onChangeColor: Dispatch<SetStateAction<string>>;
}
export interface SelectIconProps {
t: TTranslation;
withoutIcon: boolean;
setWithoutIcon: Dispatch<SetStateAction<boolean>>;
}