import clsx from 'clsx'; import type { SVGProps } from 'react'; import React from 'react'; interface LogoIconProps { className?: string; } /** * Renders the logo icon. * * @param props - The SVG props. * @returns The rendered logo icon. */ export function LogoIcon(props: SVGProps): JSX.Element { return ( ); } /** * Renders the small logo. * * @param className - The class name for the logo container. * @returns The rendered small logo. */ export function SmallLogo({ className }: LogoIconProps): JSX.Element { return (

UT Registration

Plus{' '} {import.meta.env.VITE_BETA_BUILD ? `(${import.meta.env.VITE_PACKAGE_VERSION})` : ''}

); } /** * Renders the large logo. * * @param className - The class name for the logo container. * @returns The rendered large logo. */ export function LargeLogo({ className }: LogoIconProps): JSX.Element { return (

UT Registration

Plus{' '} {import.meta.env.VITE_BETA_BUILD ? `(${import.meta.env.VITE_PACKAGE_VERSION})` : ''}

); }