Files
shop-server/client/src/shared/ui/BearLogo.tsx
T
@kirill.komarov d40edf97e7 base commit
2026-04-28 21:47:43 +05:00

42 lines
1.3 KiB
TypeScript

import SvgIcon from '@mui/material/SvgIcon'
import type { SvgIconProps } from '@mui/material/SvgIcon'
export function BearLogo(props: SvgIconProps) {
return (
<SvgIcon viewBox="0 0 64 64" {...props}>
<path
d="M18 24c-3.9 0-7-3.1-7-7s3.1-7 7-7c2.8 0 5.3 1.7 6.4 4.1C26.5 12.8 29.1 11 32 11s5.5 1.8 7.6 4.1C40.7 11.7 43.2 10 46 10c3.9 0 7 3.1 7 7s-3.1 7-7 7"
fill="currentColor"
opacity="0.35"
/>
<path
d="M32 18c-12.1 0-22 9.4-22 21 0 12.2 10.6 20 22 20s22-7.8 22-20c0-11.6-9.9-21-22-21Z"
fill="currentColor"
/>
<path
d="M23 39c0 2.2-1.6 4-3.5 4S16 41.2 16 39s1.6-4 3.5-4S23 36.8 23 39Zm25 0c0 2.2-1.6 4-3.5 4S41 41.2 41 39s1.6-4 3.5-4S48 36.8 48 39Z"
fill="#111"
opacity="0.85"
/>
<path
d="M32 33c-6.2 0-11.2 4.6-11.2 10.2 0 5.5 5 9.8 11.2 9.8s11.2-4.3 11.2-9.8C43.2 37.6 38.2 33 32 33Z"
fill="#fff"
opacity="0.9"
/>
<path
d="M32 40.2c-1.9 0-3.4-1.2-3.4-2.7s1.5-2.7 3.4-2.7 3.4 1.2 3.4 2.7-1.5 2.7-3.4 2.7Z"
fill="#111"
opacity="0.9"
/>
<path
d="M27.8 44.8c1.2 1.5 2.8 2.2 4.2 2.2s3-.7 4.2-2.2"
fill="none"
stroke="#111"
strokeWidth="2.6"
strokeLinecap="round"
opacity="0.85"
/>
</SvgIcon>
)
}