import * as React from 'react' import { cva, type VariantProps } from 'class-variance-authority' import { cn } from '@/lib/utils' const logoVariants = cva('inline-block', { variants: { size: { sm: 'h-6 w-auto', md: 'h-8 w-auto', lg: 'h-10 w-auto', xl: 'h-14 w-auto', }, variant: { color: '', monochrome: '', }, }, defaultVariants: { size: 'md', variant: 'color', }, }) function Logo({ className, size, variant, ...props }: React.ComponentProps<'svg'> & VariantProps) { return ( ) } export { Logo, logoVariants }