import React from 'react'; /** * Official Elestio logo with unique IDs to prevent gradient/clip-path collisions * when the same SVG is rendered multiple times on the page. */ export const ElestioLogo = ({ className, ...props }: { className?: string } & React.SVGProps) => { // Generate unique ID suffix to avoid ID collisions between instances const uniqueId = React.useId(); return ( ); };