Files
shop-server/client/src/shared/ui/BearLogo.tsx
T
2026-05-25 18:46:48 +05:00

22 lines
414 B
TypeScript

import Box from '@mui/material/Box'
import type { SxProps, Theme } from '@mui/material/styles'
type BearLogoProps = {
sx?: SxProps<Theme>
}
export function BearLogo({ sx }: BearLogoProps) {
return (
<Box
component="img"
src="/logo.webp"
alt="Любимый Креатив"
sx={{
objectFit: 'contain',
transform: 'scale(1.25)',
...sx,
}}
/>
)
}