fix: menu, move beauty phone icon to icons

This commit is contained in:
2025-07-09 08:53:58 +03:00
parent 3e2426424d
commit 57db15e01a
4 changed files with 51 additions and 35 deletions

View File

@@ -4,6 +4,7 @@ import s from './styles.module.scss';
import type { ReactNode, SVGProps } from 'react';
import { useModal } from '@core/providers/modal-provider';
import { ConsultationModal } from '@/feature/article';
import { Icons } from '@/shared/ui/icon';
type TBeautyButtonProps = {
children?: ReactNode;
@@ -17,7 +18,7 @@ function BeautyButton({ children, onClick }: TBeautyButtonProps) {
return (
<div className={s.Container}>
<button className={s.Button} onClick={openModal}>
<PhoneIcon color={'white'} />
<Icons.BtnPhone color={'white'} />
<span className={s.Phone}>{children}</span>
</button>
<p className={s.Action} onClick={openModal}>
@@ -27,20 +28,4 @@ function BeautyButton({ children, onClick }: TBeautyButtonProps) {
);
}
//MagePhoneFill
const PhoneIcon = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns='http://www.w3.org/2000/svg'
width={24}
height={24}
viewBox='0 0 24 24'
{...props}
>
<path
fill='currentColor'
d='M21.963 18.855a2.74 2.74 0 0 1-.898 1.47a5.36 5.36 0 0 1-3.848 1.602h-.358a11.4 11.4 0 0 1-4.287-1.082c-.326-.153-.643-.296-1.02-.47A19.8 19.8 0 0 1 7.253 17.1a18.6 18.6 0 0 1-4.012-5.451A11.9 11.9 0 0 1 2.15 8.106a6.5 6.5 0 0 1 .418-3.808a7 7 0 0 1 1.174-1.48a2.3 2.3 0 0 1 1.634-.745a2.54 2.54 0 0 1 1.725.95c.47.52 1.02 1.02 1.52 1.55l.644.634c.38.333.615.802.653 1.306c.001.464-.17.911-.48 1.256a9 9 0 0 1-.622.694l-.215.225a1.15 1.15 0 0 0-.286.418c-.052.154-.07.318-.05.48c.164.444.421.848.755 1.184c.52.704 1.02 1.317 1.582 2.042a13.3 13.3 0 0 0 3.4 2.807c.123.1.27.167.428.194c.14.021.281 0 .408-.062a3.5 3.5 0 0 0 1.021-.826c.36-.444.882-.726 1.45-.787a2.04 2.04 0 0 1 1.46.623q.35.302.663.643l.306.327l.317.306c.193.194.377.368.56.572q.5.43.93.929c.293.374.441.842.418 1.317'
></path>
</svg>
);
export { BeautyButton };