Skeleton

Installation

Install the following dependencies

npm install clsx

Copy and paste the following code into your project

primitives/skeleton/index.tsx

import { clsx } from 'clsx';import { ReactNode } from 'react';/** * This component supports various CSS variables for theming. Here's a comprehensive list, along * with their default values: * * ```css * :root { *   --skeleton: color-mix(in oklab, hsl(var(--contast-300)), white 75%); * } * ``` */function SkeletonRoot({  className,  children,  pending = false,  hideOverflow = false,}: {  className?: string;  children?: React.ReactNode;  pending?: boolean;  hideOverflow?: boolean;}) {  return (    <div      className={clsx('@container', hideOverflow && 'overflow-hidden', className)}      data-pending={pending ? '' : undefined}      role={pending ? 'status' : undefined}    >      {children}      {pending && <span className="sr-only">Loading...</span>}    </div>  );}function SkeletonBox({ className }: { className?: string }) {  return <div className={clsx('bg-[var(--skeleton,hsl(var(--contrast-300)/15%))]', className)} />;}function SkeletonText({  characterCount = 10,  className,}: {  characterCount?: number | 'full';  className?: string;}) {  return (    <div className={clsx('flex h-[1lh] items-center', className)}>      <div        className={clsx(          `h-[1ex] max-w-full rounded-[inherit] bg-[var(--skeleton,hsl(var(--contrast-300)/15%))]`,        )}        style={{ width: characterCount === 'full' ? '100%' : `${characterCount}ch` }}      />    </div>  );}function SkeletonIcon({ className, icon }: { className?: string; icon: ReactNode }) {  return (    <div className={clsx('text-[var(--skeleton,hsl(var(--contrast-300)))] opacity-25', className)}>      {icon}    </div>  );}export { SkeletonIcon as Icon, SkeletonRoot as Root, SkeletonBox as Box, SkeletonText as Text };

Usage

import * as Skeleton from '@/vibes/soul/primitives/skeleton';function Usage() {  return (      <Skeleton.Root className="w-96">          <Skeleton.Box className="h-32 w-full rounded-xl" />          <Skeleton.Text characterCount={24} />      </Skeleton.Root>  );}

API Reference

Skeleton.Root

PropTypeDefault
children
ReactNode
className
string
pending
boolean
false
hideOverflow
bolean
false

Skeleton.Text

PropTypeDefault
className
string
characterCount
number | 'full'
10

Skeleton.Box

PropTypeDefault
className
string

Skeleton.Icon

PropTypeDefault
className
string
icon
ReactNode

CSS Variables

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

:root {  --skeleton: color-mix(in oklab, hsl(var(--contast-300)), white 75%);}