import { memo } from 'react'; import { Box } from '@/shared/ui/Box'; import { cn } from '@/shared/libs'; interface RingSoftProps { className?: string; size: string | number; } export const RingSoft = memo(({ className, size }: RingSoftProps) => { return ( ); });