Logo

Installation

Add the following Soul components

The logo component uses the streamable and skeleton components. Make sure you have added them to your project.

Install the following dependencies

npm install clsx

Copy and paste the following code into your project

primitives/logo/index.tsx

import { clsx } from 'clsx';import Image from 'next/image';import Link from 'next/link';import { Stream, Streamable } from '@/vibes/soul/lib/streamable';import * as Skeleton from '@/vibes/soul/primitives/skeleton';export interface LogoProps {  className?: string;  logo: Streamable<string | { src: string; alt: string }>;  label: string;  href: string;  width: number;  height: number;}/** * This component supports various CSS variables for theming. Here's a comprehensive list, along * with their default values: * * ```css * :root { *   --logo-focus: hsl(var(--primary)); *   --logo-font-family: var(--font-family-heading); *   --logo-text: hsl(var(--foreground)); * } * ``` */export function Logo({ className, logo: streamableLogo, href, width, height, label }: LogoProps) {  return (    <Stream fallback={<LogoSkeleton className={className} />} value={streamableLogo}>      {(logo) => (        <Link          aria-label={label}          className={clsx(            'relative outline-0 ring-[var(--logo-focus,hsl(var(--primary)))] ring-offset-4 focus-visible:ring-2',            className,          )}          href={href}          style={typeof logo === 'string' ? {} : { width, height }}        >          {typeof logo === 'object' ? (            <Image              alt={logo.alt}              className="object-contain object-left"              fill              sizes={`${width}px`}              src={logo.src}            />          ) : (            typeof logo === 'string' && (              <span className="font-[family-name:var(--logo-font-family,var(--font-family-heading))] text-lg font-semibold leading-none text-[var(--logo-text,hsl(var(--foreground)))] @xl:text-2xl">                {logo}              </span>            )          )}        </Link>      )}    </Stream>  );}export function LogoSkeleton({ className }: Pick<LogoProps, 'className'>) {  return <Skeleton.Box className={clsx('h-6 w-16 rounded-md', className)} />;}

Usage

import { Logo } from '@/vibes/soul/primitives/logo';function Usage() {  return (    <Logo height={40} href="#" label="SOUL" logo="SOUL" width={200} />  );}

API Reference

LogoProps

PropTypeDefault
className
string
logo*
Streamable<string | { src: string; alt: string } | null>
label*
string
href*
string
width*
number
height*
number

CSS Variables

This component supports various CSS variables for theming. Here's a comprehensive list.

:root {  --logo-focus: hsl(var(--primary));  --logo-font-family: var(--font-family-heading);  --logo-text: hsl(var(--foreground));}