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

UT Registration

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

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

UT Registration

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

); }