import { forwardRef, type SVGProps } from 'react' import { cn } from '../../lib/utils' export type LogoIconProps = SVGProps & { className?: string } export const LogoIcon = forwardRef( ({ className, ...props }, ref) => { return ( ) }, ) LogoIcon.displayName = 'LogoIcon'