import { memo } from 'react'; export const EmptySvg = memo(function EmptySvg({ style, className, }: { style?: React.CSSProperties; className?: string; }) { return ( ); });